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