blob: 5ad1569ed4318f69fbdba525bb8e486b9092e843 [file] [log] [blame]
Andreas Gampecd2ef4c2014-08-19 22:31:31 -07001# Build the unit tests.
2LOCAL_PATH := $(call my-dir)
Calin Juravlef9d9e2a2014-10-17 13:45:39 +01003
4include $(LOCAL_PATH)/Android.nativebridge-dummy.mk
5
Andreas Gampecd2ef4c2014-08-19 22:31:31 -07006include $(CLEAR_VARS)
7
8# Build the unit tests.
9test_src_files := \
Calin Juravle59a719c2014-10-28 12:43:24 +000010 CodeCacheCreate_test.cpp \
11 CodeCacheExists_test.cpp \
jgu21cef898f2015-07-02 12:02:11 +080012 CodeCacheStatFail_test.cpp \
Calin Juravlef9d9e2a2014-10-17 13:45:39 +010013 CompleteFlow_test.cpp \
Andreas Gampecd2ef4c2014-08-19 22:31:31 -070014 InvalidCharsNativeBridge_test.cpp \
Andreas Gampea6ac9ce2015-04-30 20:39:12 -070015 NativeBridge2Signal_test.cpp \
16 NativeBridgeVersion_test.cpp \
Andreas Gampe04054e22014-09-25 22:33:01 -070017 NeedsNativeBridge_test.cpp \
18 PreInitializeNativeBridge_test.cpp \
Calin Juravlef9d9e2a2014-10-17 13:45:39 +010019 PreInitializeNativeBridgeFail1_test.cpp \
20 PreInitializeNativeBridgeFail2_test.cpp \
Andreas Gampecd2ef4c2014-08-19 22:31:31 -070021 ReSetupNativeBridge_test.cpp \
22 UnavailableNativeBridge_test.cpp \
23 ValidNameNativeBridge_test.cpp
24
Calin Juravlef9d9e2a2014-10-17 13:45:39 +010025
Andreas Gampecd2ef4c2014-08-19 22:31:31 -070026shared_libraries := \
27 liblog \
Calin Juravlef9d9e2a2014-10-17 13:45:39 +010028 libnativebridge \
29 libnativebridge-dummy
Andreas Gampecd2ef4c2014-08-19 22:31:31 -070030
31$(foreach file,$(test_src_files), \
32 $(eval include $(CLEAR_VARS)) \
33 $(eval LOCAL_CLANG := true) \
Andreas Gampecd2ef4c2014-08-19 22:31:31 -070034 $(eval LOCAL_SHARED_LIBRARIES := $(shared_libraries)) \
35 $(eval LOCAL_SRC_FILES := $(file)) \
36 $(eval LOCAL_MODULE := $(notdir $(file:%.cpp=%))) \
37 $(eval include $(BUILD_NATIVE_TEST)) \
38)
39
40$(foreach file,$(test_src_files), \
41 $(eval include $(CLEAR_VARS)) \
42 $(eval LOCAL_CLANG := true) \
Andreas Gampecd2ef4c2014-08-19 22:31:31 -070043 $(eval LOCAL_SHARED_LIBRARIES := $(shared_libraries)) \
44 $(eval LOCAL_SRC_FILES := $(file)) \
45 $(eval LOCAL_MODULE := $(notdir $(file:%.cpp=%))) \
46 $(eval include $(BUILD_HOST_NATIVE_TEST)) \
Andreas Gampe049249c2014-08-19 22:31:31 -070047)