Home | History | Annotate | Download | only in tests
      1 LOCAL_PATH := $(call my-dir)
      2 
      3 # Module declaration for the 'minitest' unit-test
      4 # library. Note that it provides a main() implementation.
      5 include $(CLEAR_VARS)
      6 LOCAL_MODULE := minitest
      7 LOCAL_SRC_FILES := minitest/minitest.cc
      8 LOCAL_EXPORT_C_INCLUDES := $(LOCAL_PATH)
      9 include $(BUILD_STATIC_LIBRARY)
     10 
     11 # Module declaration for the unit test program.
     12 include $(CLEAR_VARS)
     13 LOCAL_MODULE := android_support_unittests
     14 LOCAL_SRC_FILES := \
     15   ctype_unittest.cc \
     16   stdio_unittest.cc \
     17   wchar_unittest.cc \
     18 
     19 LOCAL_STATIC_LIBRARIES := android_support minitest
     20 include $(BUILD_EXECUTABLE)
     21 
     22 # Include the android_support module definitions.
     23 include $(LOCAL_PATH)/../Android.mk
     24 
     25