mirror of
https://github.com/status-im/react-native.git
synced 2025-01-12 18:44:25 +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
16 lines
277 B
Makefile
16 lines
277 B
Makefile
LOCAL_PATH := $(call my-dir)
|
|
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_MODULE := jsinspector
|
|
|
|
LOCAL_SRC_FILES := \
|
|
InspectorInterfaces.cpp
|
|
|
|
LOCAL_C_INCLUDES := $(LOCAL_PATH)/..
|
|
LOCAL_EXPORT_C_INCLUDES := $(LOCAL_C_INCLUDES)
|
|
|
|
LOCAL_CFLAGS += -fexceptions
|
|
|
|
include $(BUILD_SHARED_LIBRARY)
|