Files
react-native/Libraries/FBReactNativeSpec/BUCK
T
Kevin Gozali f24b815fe6 use xplat BUCK attribution
Summary:
Internal code attribution update.

Changelog: [Internal]

Reviewed By: mdvacca

Differential Revision: D21603406

fbshipit-source-id: c3da1823e26beb0092d97e66d731618c0433a2f7
2020-05-15 21:55:52 -07:00

26 lines
851 B
Python

load("//tools/build_defs/oss:rn_defs.bzl", "fb_apple_library", "react_native_xplat_target_apple", "subdir_glob")
fb_apple_library(
name = "FBReactNativeSpecApple",
srcs = glob(["FBReactNativeSpec/**/*.mm"]),
exported_headers = subdir_glob(
[
("FBReactNativeSpec", "*.h"),
],
prefix = "FBReactNativeSpec",
),
contacts = ["oncall+react_native@xmail.facebook.com"],
extension_api_only = True,
frameworks = [
"Foundation",
"UIKit",
],
labels = ["supermodule:xplat/default/public.react_native.infra"],
reexport_all_header_dependencies = True,
deps = [
"//xplat/js/react-native-github:RCTTypeSafety",
"//xplat/js/react-native-github/Libraries/RCTRequired:RCTRequired",
react_native_xplat_target_apple("turbomodule/core:core"),
],
)