mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
a793ed7598
Summary: build-break overriding_review_checks_triggers_an_audit_and_retroactive_review fbshipit-source-id: 316b879368503114ea1af16276643301601bcca8
26 lines
866 B
Python
26 lines
866 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/private.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"),
|
|
],
|
|
)
|