2017-03-23 18:57:18 +00:00
|
|
|
# Set up common deps
|
|
|
|
|
2017-05-12 09:36:06 +00:00
|
|
|
# Building is not supported in OSS right now
|
2017-06-02 15:55:32 +00:00
|
|
|
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
|
2017-05-12 09:36:06 +00:00
|
|
|
|
2017-03-23 18:57:18 +00:00
|
|
|
GLOG_DEP = "//ReactAndroid/build/third-party-ndk/glog:glog"
|
2017-05-11 11:46:44 +00:00
|
|
|
|
|
|
|
INSPECTOR_FLAGS = []
|
2017-06-02 15:55:32 +00:00
|
|
|
DEBUG_PREPROCESSOR_FLAGS = []
|
2017-05-12 15:18:11 +00:00
|
|
|
STATIC_LIBRARY_IOS_FLAGS = []
|
2017-05-11 11:46:44 +00:00
|
|
|
|
|
|
|
JSC_DEPS = []
|
2017-05-11 13:32:41 +00:00
|
|
|
JSC_INTERNAL_DEPS = []
|
2017-05-12 09:36:06 +00:00
|
|
|
|
|
|
|
THIS_IS_FBOBJC = False
|
|
|
|
THIS_IS_FBANDROID = False
|