mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
Summary: `xplat` targets add different deps based on what platform the target is being built for. for anything using `fb_xplat`, we can put all ios supermodules in `fbobjc_labels` and all android sms in `fbandroid_labels` There's some weirdness with python targets like `thrift_gen` in `/xplat/mobileconfig/tools/generator/gen-py/BUCK` that don't have platform-specific labels because the except_for list for `fbandroid` doesn't need the `fbsource//` prefix (see changes in `/ios/isolation/infra.mobileconfig.sm`) Changelog: [Internal] Reviewed By: shergin, joshleibsly Differential Revision: D17884952 fbshipit-source-id: e245364cf515b75682990094d24f789d53b1f3f5
43 lines
1.3 KiB
Python
43 lines
1.3 KiB
Python
load("//tools/build_defs/oss:rn_defs.bzl", "ANDROID", "APPLE", "cxx_library", "react_native_xplat_dep", "react_native_xplat_target")
|
|
|
|
cxx_library(
|
|
name = "jsiexecutor",
|
|
srcs = [
|
|
"jsireact/JSIExecutor.cpp",
|
|
"jsireact/JSINativeModules.cpp",
|
|
],
|
|
header_namespace = "",
|
|
exported_headers = {
|
|
"jsireact/JSIExecutor.h": "jsireact/JSIExecutor.h",
|
|
"jsireact/JSINativeModules.h": "jsireact/JSINativeModules.h",
|
|
},
|
|
compiler_flags = [
|
|
"-fexceptions",
|
|
"-frtti",
|
|
],
|
|
fbandroid_deps = [
|
|
"fbsource//xplat/folly:molly",
|
|
"fbsource//xplat/third-party/glog:glog",
|
|
"fbsource//xplat/third-party/linker_lib:atomic",
|
|
],
|
|
fbobjc_force_static = True,
|
|
fbobjc_header_path_prefix = "",
|
|
fbobjc_labels = ["supermodule:ios/isolation/infra.react_native"],
|
|
platforms = (ANDROID, APPLE),
|
|
preprocessor_flags = [
|
|
"-DLOG_TAG=\"ReactNative\"",
|
|
"-DWITH_FBSYSTRACE=1",
|
|
],
|
|
visibility = [
|
|
"PUBLIC",
|
|
],
|
|
xcode_public_headers_symlinks = True,
|
|
deps = [
|
|
"fbsource//xplat/fbsystrace:fbsystrace",
|
|
react_native_xplat_dep("jsi:jsi"),
|
|
react_native_xplat_dep("jsi:JSIDynamic"),
|
|
react_native_xplat_target("cxxreact:bridge"),
|
|
react_native_xplat_target("cxxreact:jsbigstring"),
|
|
],
|
|
)
|