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