mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
f3bf4d02ab
Summary: Pull Request resolved: https://github.com/facebook/react-native/pull/35482 This change moves the JSCRuntime.h/cpp into a `jsc` folder. This change is required for several reasons: 1. on iOS, the new `jsi`, `jsidynamic` and `jsc` setup is breaking the `use_frameworks!` with `:linkage => :static` option with the old architecture. So it is a regression. 2. JSCRuntime is required by some libraries and needs to be exposed as a prefab and the current setup makes it hard to achieve. allow-large-files ## Changelog: [General][Changed] - Move JSCRuntime into a separate pod/prefab Reviewed By: cortinico Differential Revision: D41533778 fbshipit-source-id: 642240c93a6c124280430d4f196049cb67cb130b
35 lines
1.1 KiB
Python
35 lines
1.1 KiB
Python
load("//tools/build_defs/oss:rn_defs.bzl", "APPLE", "IOS", "MACOSX", "get_apple_compiler_flags", "get_apple_inspector_flags", "get_preprocessor_flags_for_build_mode", "react_native_xplat_dep", "rn_xplat_cxx_library")
|
|
|
|
APPLE_COMPILER_FLAGS = get_apple_compiler_flags()
|
|
|
|
rn_xplat_cxx_library(
|
|
name = "JSCRuntime",
|
|
srcs = [
|
|
"JSCRuntime.cpp",
|
|
],
|
|
header_namespace = "jsc",
|
|
exported_headers = [
|
|
"JSCRuntime.h",
|
|
],
|
|
apple_sdks = (IOS, MACOSX),
|
|
compiler_flags_pedantic = True,
|
|
fbobjc_compiler_flags = APPLE_COMPILER_FLAGS + [
|
|
"-Os",
|
|
],
|
|
fbobjc_frameworks = [
|
|
"$SDKROOT/System/Library/Frameworks/JavaScriptCore.framework",
|
|
],
|
|
fbobjc_preprocessor_flags = get_preprocessor_flags_for_build_mode() + get_apple_inspector_flags(),
|
|
labels = [
|
|
"pfh:ReactNative_CommonInfrastructurePlaceholder",
|
|
],
|
|
platforms = APPLE,
|
|
visibility = ["PUBLIC"],
|
|
xplat_mangled_args = {
|
|
"soname": "libjscjsi.$(ext)",
|
|
},
|
|
exported_deps = [
|
|
react_native_xplat_dep("jsi:jsi"),
|
|
],
|
|
)
|