blob: 799eb7689060c37a9fd88d8f7373451ac0d8134d [file] [log] [blame]
Jeff Brownb4ff35d2011-01-02 16:37:43 -08001# Build the unit tests.
2LOCAL_PATH:= $(call my-dir)
3include $(CLEAR_VARS)
4
5ifneq ($(TARGET_SIMULATOR),true)
6
7# Build the unit tests.
8test_src_files := \
9 InputReader_test.cpp \
10 InputDispatcher_test.cpp
11
12shared_libraries := \
13 libcutils \
14 libutils \
15 libhardware \
16 libhardware_legacy \
17 libui \
18 libsurfaceflinger_client \
19 libskia \
20 libstlport \
21 libinput
22
23static_libraries := \
24 libgtest \
25 libgtest_main
26
27c_includes := \
28 bionic \
29 bionic/libstdc++/include \
30 external/gtest/include \
31 external/stlport/stlport \
32 external/skia/include/core
33
34module_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.
48include $(call all-subdir-makefiles)
49
50endif