Set RNFeed to use iOS 8's JSC. Working but missing features.

Reviewed By: lexs

Differential Revision: D3162414

fb-gh-sync-id: d7eb65969486eddd623501e5eaa07f957088a846
fbshipit-source-id: d7eb65969486eddd623501e5eaa07f957088a846
This commit is contained in:
Dan Caspi 2016-04-21 18:59:48 -07:00 committed by Facebook Github Bot 1
parent 9be37ca60e
commit c6c72ddad4
2 changed files with 2 additions and 25 deletions

View File

@ -14,6 +14,8 @@ PREPROCESSOR_FLAGS = [
'-DLOG_TAG="ReactNative"',
'-DWITH_JSC_EXTRA_TRACING=1',
'-DWITH_FBSYSTRACE=1',
# '-DWITH_JSC_MEMORY_PRESSURE=1', # Taken care of in D3162471
# '-DWITH_JSC_INTERNAL=1', # Taken care of in D3163295
]
def react_library(**kwargs):
@ -27,22 +29,6 @@ def react_library(**kwargs):
**kwargs
)
cxx_library(
name = 'react-internal',
visibility = [
react_native_target('jni/react/jni:jni-internal'),
],
deps = DEPS + JSC_INTERNAL_DEPS,
preprocessor_flags = PREPROCESSOR_FLAGS + [
'-DWITH_FB_JSC_TUNING=1',
'-DWITH_JSC_MEMORY_PRESSURE=1',
'-DWITH_FBJSCEXTENSIONS=1',
'-DWITH_JSC_INTERNAL=1',
'-DWITH_FB_MEMORY_PROFILING=1',
],
**kwargs
)
react_library(
soname = 'libreactnative.so',
header_namespace = 'react',

View File

@ -22,15 +22,6 @@ def jni_library(**kwargs):
**kwargs
)
cxx_library(
name='jni-internal',
visibility = [INTERNAL_APP],
deps = DEPS + JSC_INTERNAL_DEPS + [
react_native_target('jni/react:react-internal'),
],
**kwargs
)
jni_library(
soname = 'libreactnativejni.so',
header_namespace = 'react/jni',