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     InputReader_test.cpp \
      8     InputDispatcher_test.cpp
      9 
     10 shared_libraries := \
     11     libcutils \
     12     liblog \
     13     libandroidfw \
     14     libutils \
     15     libhardware \
     16     libhardware_legacy \
     17     libui \
     18     libskia \
     19     libstlport \
     20     libinput
     21 
     22 static_libraries := \
     23     libgtest \
     24     libgtest_main
     25 
     26 c_includes := \
     27     bionic \
     28     bionic/libstdc++/include \
     29     external/gtest/include \
     30     external/stlport/stlport \
     31     external/skia/include/core
     32 
     33 module_tags := eng tests
     34 
     35 $(foreach file,$(test_src_files), \
     36     $(eval include $(CLEAR_VARS)) \
     37     $(eval LOCAL_SHARED_LIBRARIES := $(shared_libraries)) \
     38     $(eval LOCAL_STATIC_LIBRARIES := $(static_libraries)) \
     39     $(eval LOCAL_C_INCLUDES := $(c_includes)) \
     40     $(eval LOCAL_SRC_FILES := $(file)) \
     41     $(eval LOCAL_MODULE := $(notdir $(file:%.cpp=%))) \
     42     $(eval LOCAL_MODULE_TAGS := $(module_tags)) \
     43     $(eval include $(BUILD_EXECUTABLE)) \
     44 )
     45 
     46 # Build the manual test programs.
     47 include $(call all-makefiles-under, $(LOCAL_PATH))
     48