Home | History | Annotate | Download | only in jni
      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 $(call import-module,cxx-stl/gabi++)
     16