mirror of
https://github.com/status-im/react-native.git
synced 2025-01-10 09:35:48 +00:00
c8e98bbaf5
Summary: Fix for android github CI. Github CI doesn't work without this change. CI passes. [INTERNAL] Android CI fix. Closes https://github.com/facebook/react-native/pull/17551 Differential Revision: D6707477 Pulled By: hramos fbshipit-source-id: f98515234da3b90ee3233523bcd7cc67ed82c1b4
25 lines
607 B
Plaintext
25 lines
607 B
Plaintext
# Set up common deps
|
|
|
|
# Building is not supported in OSS right now
|
|
def rn_xplat_cxx_library(name, **kwargs):
|
|
cxx_library(name, **kwargs)
|
|
# 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
|