Home | History | Annotate | Download | only in unit_test
      1 LOCAL_PATH := $(call my-dir)
      2 include $(CLEAR_VARS)
      3 
      4 LOCAL_SRC_FILES := \
      5 	src/test_case.cpp \
      6  	src/test_problem.cpp \
      7  	src/test_result.cpp \
      8  	src/text_test_interpreter.cpp \
      9  	src/unit_test_main.cpp \
     10  	src/unit_test_args.cpp
     11 
     12 
     13 LOCAL_MODULE := libunit_test
     14 
     15 LOCAL_CFLAGS :=  $(PV_CFLAGS)
     16 
     17 
     18 
     19 LOCAL_STATIC_LIBRARIES := 
     20 
     21 LOCAL_SHARED_LIBRARIES := 
     22 
     23 LOCAL_C_INCLUDES := \
     24 	$(PV_TOP)/oscl/unit_test/src \
     25  	$(PV_TOP)/oscl/unit_test/src \
     26  	$(PV_INCLUDES)
     27 
     28 LOCAL_COPY_HEADERS_TO := $(PV_COPY_HEADERS_TO)
     29 
     30 LOCAL_COPY_HEADERS := \
     31 	src/stringable.h \
     32  	src/test_case.h \
     33  	src/test_problem.h \
     34  	src/test_result.h \
     35  	src/text_test_interpreter.h \
     36  	src/unit_test_common.h \
     37  	src/unit_test_local_string.h \
     38  	src/unit_test_args.h \
     39  	src/unit_test_vector.h
     40 
     41 include $(BUILD_STATIC_LIBRARY)
     42