1 LOCAL_PATH := $(call my-dir) 2 3 include $(CLEAR_VARS) 4 LOCAL_MODULE := test_system_cpp_headers 5 LOCAL_SRC_FILES := main.cpp 6 LOCAL_C_INCLUDES := $(NDK_ROOT)/sources/cxx-stl/system/include 7 include $(BUILD_EXECUTABLE) 8 9 include $(CLEAR_VARS) 10 LOCAL_MODULE := test_gabixx_cpp_headers 11 LOCAL_SRC_FILES := main.cpp 12 LOCAL_STATIC_LIBRARIES := libgabi++_static 13 include $(BUILD_EXECUTABLE) 14 15 include $(NDK_ROOT)/sources/cxx-stl/gabi++/Android.mk 16