mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
Summary: Pull Request resolved: https://github.com/facebook/react-native/pull/35064 Original commit changeset: 0fb0db845c04 Original Phabricator Diff: D40610875 (https://github.com/facebook/react-native/commit/d941940b4ce7ed9030be4f72980fb45d9b62365d) Open source is using BUCK 1 which does not seem to have the `oncall` directive. Backing it out because it is breaking the external CI. ## Changelog [internal] Reviewed By: cortinico Differential Revision: D40635873 fbshipit-source-id: 79ebd4db0972520fcca6ccb8c1725657a8ef7949
46 lines
1.4 KiB
Python
46 lines
1.4 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 = [
|
|
"//third-party/glog:glog",
|
|
"//xplat/folly:json",
|
|
"//xplat/third-party/linker_lib:atomic",
|
|
],
|
|
fbobjc_force_static = True,
|
|
fbobjc_header_path_prefix = "",
|
|
labels = [
|
|
"pfh:ReactNative_CommonInfrastructurePlaceholder",
|
|
],
|
|
platforms = (ANDROID, APPLE),
|
|
preprocessor_flags = [
|
|
"-DLOG_TAG=\"ReactNative\"",
|
|
"-DWITH_FBSYSTRACE=1",
|
|
],
|
|
visibility = [
|
|
"PUBLIC",
|
|
],
|
|
xcode_public_headers_symlinks = True,
|
|
deps = [
|
|
"//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"),
|
|
react_native_xplat_target("reactperflogger:reactperflogger"),
|
|
],
|
|
)
|