mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
Summary: Context: https://fb.workplace.com/groups/2116332615111503/permalink/2773825422695549/ build-break overriding_review_checks_triggers_an_audit_and_retroactive_review allow-large-files allow_many_files Differential Revision: D19858113 Ninja: master broken fbshipit-source-id: d9e531f9579bfe7ef87097f0d50512722eb1de5e
26 lines
858 B
Python
26 lines
858 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:ios/default/react_native.infra"],
|
|
reexport_all_header_dependencies = True,
|
|
deps = [
|
|
"fbsource//xplat/js/react-native-github:RCTTypeSafety",
|
|
"fbsource//xplat/js/react-native-github/Libraries/RCTRequired:RCTRequired",
|
|
react_native_xplat_target_apple("turbomodule/core:core"),
|
|
],
|
|
)
|