mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
a2b4b3626f
Summary: For consistency, we use the files checked in to github. Reviewed By: JoshuaGross Differential Revision: D15993128 fbshipit-source-id: 1e9fdd6b4111284c84cbd5a63d384ef481659b01
23 lines
721 B
Python
23 lines
721 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",
|
|
],
|
|
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"),
|
|
],
|
|
)
|