mirror of
https://github.com/status-im/react-native.git
synced 2025-01-09 09:12:02 +00:00
79500f81a9
Summary: Closes https://github.com/facebook/react-native/pull/14286 Differential Revision: D5164925 Pulled By: javache fbshipit-source-id: 0ebe028ab58f37a9afc8b615fe346d7af9180040
26 lines
605 B
Plaintext
26 lines
605 B
Plaintext
# Set up common deps
|
|
|
|
# Building is not supported in OSS right now
|
|
def rn_xplat_cxx_library(name, **kwargs):
|
|
cxx_library(name = name)
|
|
|
|
# Helper for referring to an Android RN target
|
|
def react_native_target(path):
|
|
return '//ReactAndroid/src/main/' + path
|
|
|
|
# Helper for referring to an xplat RN target
|
|
def react_native_xplat_target(path):
|
|
return '//ReactCommon/' + path
|
|
|
|
GLOG_DEP = "//ReactAndroid/build/third-party-ndk/glog:glog"
|
|
|
|
INSPECTOR_FLAGS = []
|
|
DEBUG_PREPROCESSOR_FLAGS = []
|
|
STATIC_LIBRARY_IOS_FLAGS = []
|
|
|
|
JSC_DEPS = []
|
|
JSC_INTERNAL_DEPS = []
|
|
|
|
THIS_IS_FBOBJC = False
|
|
THIS_IS_FBANDROID = False
|