mirror of
https://github.com/status-im/react-native.git
synced 2025-01-13 02:54:42 +00:00
6117a6c720
Summary: This PR bumps Android NDK version to r17b (latest). Cleaned up redundant **LOCAL_EXPORT_CPPFLAGS** rules in .mk files Pull Request resolved: https://github.com/facebook/react-native/pull/20357 Differential Revision: D9068424 Pulled By: hramos fbshipit-source-id: 8578637e38e807288b819a36cb75ea9feefcc09f
50 lines
1.0 KiB
Makefile
50 lines
1.0 KiB
Makefile
LOCAL_PATH := $(call my-dir)
|
|
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_MODULE := reactnative
|
|
|
|
LOCAL_SRC_FILES := \
|
|
CxxNativeModule.cpp \
|
|
Instance.cpp \
|
|
JSBigString.cpp \
|
|
JSBundleType.cpp \
|
|
JSCExecutor.cpp \
|
|
JSCLegacyTracing.cpp \
|
|
JSCMemory.cpp \
|
|
JSCNativeModules.cpp \
|
|
JSCPerfStats.cpp \
|
|
JSCSamplingProfiler.cpp \
|
|
JSCTracing.cpp \
|
|
JSCUtils.cpp \
|
|
JSDeltaBundleClient.cpp \
|
|
JSExecutor.cpp \
|
|
JSIndexedRAMBundle.cpp \
|
|
MethodCall.cpp \
|
|
ModuleRegistry.cpp \
|
|
NativeToJsBridge.cpp \
|
|
Platform.cpp \
|
|
RAMBundleRegistry.cpp \
|
|
ReactMarker.cpp \
|
|
|
|
LOCAL_C_INCLUDES := $(LOCAL_PATH)/..
|
|
LOCAL_EXPORT_C_INCLUDES := $(LOCAL_C_INCLUDES)
|
|
|
|
LOCAL_CFLAGS := \
|
|
-DLOG_TAG=\"ReactNative\"
|
|
|
|
LOCAL_CFLAGS += -fexceptions -frtti
|
|
|
|
LOCAL_STATIC_LIBRARIES := jschelpers
|
|
LOCAL_SHARED_LIBRARIES := libfb libfolly_json libjsc libglog
|
|
|
|
include $(BUILD_STATIC_LIBRARY)
|
|
|
|
$(call import-module,fb)
|
|
$(call import-module,folly)
|
|
$(call import-module,jsc)
|
|
$(call import-module,glog)
|
|
$(call import-module,jschelpers)
|
|
$(call import-module,jsinspector)
|
|
$(call import-module,privatedata)
|