Home | History | Annotate | Download | only in tests
      1 # Build the unit tests.
      2 LOCAL_PATH:= $(call my-dir)
      3 include $(CLEAR_VARS)
      4 
      5 # Build the unit tests.
      6 test_src_files := \
      7     InputChannel_test.cpp \
      8     InputEvent_test.cpp \
      9     InputPublisherAndConsumer_test.cpp
     10 
     11 shared_libraries := \
     12 	libcutils \
     13 	libutils \
     14 	libEGL \
     15 	libbinder \
     16 	libpixelflinger \
     17 	libhardware \
     18 	libhardware_legacy \
     19 	libui \
     20 	libstlport \
     21 	libskia
     22 
     23 static_libraries := \
     24 	libgtest \
     25 	libgtest_main
     26 
     27 c_includes := \
     28     bionic \
     29     bionic/libstdc++/include \
     30     external/gtest/include \
     31     external/stlport/stlport \
     32     external/skia/include/core
     33 
     34 module_tags := eng tests
     35 
     36 $(foreach file,$(test_src_files), \
     37     $(eval include $(CLEAR_VARS)) \
     38     $(eval LOCAL_SHARED_LIBRARIES := $(shared_libraries)) \
     39     $(eval LOCAL_STATIC_LIBRARIES := $(static_libraries)) \
     40     $(eval LOCAL_C_INCLUDES := $(c_includes)) \
     41     $(eval LOCAL_SRC_FILES := $(file)) \
     42     $(eval LOCAL_MODULE := $(notdir $(file:%.cpp=%))) \
     43     $(eval LOCAL_MODULE_TAGS := $(module_tags)) \
     44     $(eval include $(BUILD_EXECUTABLE)) \
     45 )
     46 
     47 # Build the manual test programs.
     48 include $(call all-makefiles-under, $(LOCAL_PATH))
     49