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     libinputservice
     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_NATIVE_TEST)) \
     45 )
     46 
     47 # Build the manual test programs.
     48 include $(call all-makefiles-under, $(LOCAL_PATH))
     49