mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
efc2344868
Summary: The reason for this change is that it is the primary root that we want people to be using and the naming should reflect that. #nocancel build-break overriding_review_checks_triggers_an_audit_and_retroactive_review Changelog: [Internal] Oncall Short Name: fbobjc_sheriff Differential Revision: D19431128 fbshipit-source-id: c7208e20ed0f5f5eb6c2849428c09a6d4af9b6f3
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/infra.react_native"],
|
|
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"),
|
|
],
|
|
)
|