forked from facebook/react-native
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBUCK
More file actions
25 lines (24 loc) · 849 Bytes
/
BUCK
File metadata and controls
25 lines (24 loc) · 849 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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:ios/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"),
],
)