Marc Horowitz c49d3653ef iOS changes to switch to JSI
Summary:
change RCTCxxBridge to use JSIExecutorFactory+JSCRuntime
instead of JSCExecutorFactory.  Also remove JSC usage from RN in other
files.  This allows deleting files, too, which is done further down
the stack.

Reviewed By: RSNara

Differential Revision: D9369111

fbshipit-source-id: 67ef3146e3abe5244b6cf3249a0268598f91b277
2018-10-18 01:06:24 -07:00

40 lines
1.1 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 = [
"xplat//folly:molly",
"xplat//third-party/glog:glog",
"xplat//third-party/linker_lib:atomic",
],
fbobjc_force_static = True,
fbobjc_header_path_prefix = "",
platforms = (ANDROID, APPLE),
preprocessor_flags = [
"-DLOG_TAG=\"ReactNative\"",
"-DWITH_FBSYSTRACE=1",
],
visibility = [
"PUBLIC",
],
xcode_public_headers_symlinks = True,
deps = [
react_native_xplat_dep("jsi:jsi"),
react_native_xplat_dep("jsi:JSIDynamic"),
react_native_xplat_target("cxxreact:bridge"),
],
)