1 LOCAL_PATH := $(call my-dir) 2 3 include $(CLEAR_VARS) 4 LOCAL_MODULE := test_gabixx_static_rtti 5 LOCAL_SRC_FILES := test_gabixx_rtti.cpp 6 LOCAL_STATIC_LIBRARIES := gabi++_static 7 include $(BUILD_EXECUTABLE) 8 9 include $(CLEAR_VARS) 10 LOCAL_MODULE := test_gabixx_shared_rtti 11 LOCAL_SRC_FILES := test_gabixx_rtti.cpp 12 LOCAL_SHARED_LIBRARIES := gabi++_shared 13 include $(BUILD_EXECUTABLE) 14 15 include $(CLEAR_VARS) 16 LOCAL_MODULE := test_gabixx_static_exceptions 17 LOCAL_SRC_FILES := test_gabixx_exceptions.cpp 18 LOCAL_STATIC_LIBRARIES := gabi++_static 19 include $(BUILD_EXECUTABLE) 20 21 include $(CLEAR_VARS) 22 LOCAL_MODULE := test_gabixx_shared_exceptions 23 LOCAL_SRC_FILES := test_gabixx_exceptions.cpp 24 LOCAL_SHARED_LIBRARIES := gabi++_shared 25 include $(BUILD_EXECUTABLE) 26 27 $(call import-module,cxx-stl/gabi++) 28