Pieter De Baets 79500f81a9 Fix Travis CI runs
Summary: Closes https://github.com/facebook/react-native/pull/14286

Differential Revision: D5164925

Pulled By: javache

fbshipit-source-id: 0ebe028ab58f37a9afc8b615fe346d7af9180040
2017-06-02 09:03:18 -07:00

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