BUCK 849 B

12345678910111213141516171819202122232425
  1. load("//tools/build_defs/oss:rn_defs.bzl", "fb_apple_library", "react_native_xplat_target_apple", "subdir_glob")
  2. fb_apple_library(
  3. name = "FBReactNativeSpecApple",
  4. srcs = glob(["FBReactNativeSpec/**/*.mm"]),
  5. exported_headers = subdir_glob(
  6. [
  7. ("FBReactNativeSpec", "*.h"),
  8. ],
  9. prefix = "FBReactNativeSpec",
  10. ),
  11. contacts = ["oncall+react_native@xmail.facebook.com"],
  12. extension_api_only = True,
  13. frameworks = [
  14. "Foundation",
  15. "UIKit",
  16. ],
  17. labels = ["supermodule:ios/default/public.react_native.infra"],
  18. reexport_all_header_dependencies = True,
  19. deps = [
  20. "//xplat/js/react-native-github:RCTTypeSafety",
  21. "//xplat/js/react-native-github/Libraries/RCTRequired:RCTRequired",
  22. react_native_xplat_target_apple("turbomodule/core:core"),
  23. ],
  24. )