mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
724fe11472
Summary: Currently this is the default, but I plan to toggle the default to False shortly. False is better for build speed, as it forces you to separate deps and exported_deps. Reviewed By: williamtwilson Differential Revision: D16785991 fbshipit-source-id: 8cb73b87f1dfa50f21c0c12df1579054cdc99e6e
24 lines
766 B
Python
24 lines
766 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"],
|
|
frameworks = [
|
|
"Foundation",
|
|
"UIKit",
|
|
],
|
|
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"),
|
|
],
|
|
)
|