Summary: Closes https://github.com/facebook/react-native/pull/13945

Differential Revision: D5052083

Pulled By: javache

fbshipit-source-id: eeda8253d26c2dfd0d20b93b238377fe92e3ca3c
This commit is contained in:
Pieter De Baets 2017-05-12 08:18:11 -07:00 коммит произвёл Facebook Github Bot
Родитель afe19d8ac5
Коммит 6e2c07534e
3 изменённых файлов: 4 добавлений и 6 удалений

Просмотреть файл

@ -25,11 +25,8 @@ cxx_library(
], ],
xcode_public_headers_symlinks = True, xcode_public_headers_symlinks = True,
deps = JSC_DEPS + [ deps = JSC_DEPS + [
"//native/fb:fb", FBJNI_TARGET,
"//native/third-party/android-ndk:android",
"//xplat/folly:molly", "//xplat/folly:molly",
"//xplat/fbgloginit:fbgloginit",
"//xplat/fbsystrace:fbsystrace",
react_native_xplat_target("jschelpers:jschelpers"), react_native_xplat_target("jschelpers:jschelpers"),
], ] if not IS_OSS_BUILD else [],
) )

Просмотреть файл

@ -46,12 +46,12 @@ cxx_library(
], ],
xcode_public_headers_symlinks = True, xcode_public_headers_symlinks = True,
deps = JSC_DEPS + [ deps = JSC_DEPS + [
"//native/fb:fb",
"//native/third-party/android-ndk:android", "//native/third-party/android-ndk:android",
"//xplat/folly:molly", "//xplat/folly:molly",
"//xplat/fbgloginit:fbgloginit", "//xplat/fbgloginit:fbgloginit",
"//xplat/fbsystrace:fbsystrace", "//xplat/fbsystrace:fbsystrace",
react_native_xplat_target("cxxreact:bridge"), react_native_xplat_target("cxxreact:bridge"),
react_native_xplat_target("cxxreact:module"), react_native_xplat_target("cxxreact:module"),
FBJNI_TARGET,
], ],
) )

Просмотреть файл

@ -7,6 +7,7 @@ def rn_xplat_cxx_library(**kwargs):
GLOG_DEP = "//ReactAndroid/build/third-party-ndk/glog:glog" GLOG_DEP = "//ReactAndroid/build/third-party-ndk/glog:glog"
INSPECTOR_FLAGS = [] INSPECTOR_FLAGS = []
STATIC_LIBRARY_IOS_FLAGS = []
JSC_DEPS = [] JSC_DEPS = []
JSC_INTERNAL_DEPS = [] JSC_INTERNAL_DEPS = []