Kenny Root | 7a4adb5 | 2013-10-09 10:14:35 -0700 | [diff] [blame] | 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 | asn1_decoder_test.cpp |
| 8 | |
| 9 | shared_libraries := \ |
| 10 | liblog \ |
| 11 | libcutils |
| 12 | |
| 13 | static_libraries := \ |
| 14 | libgtest \ |
| 15 | libgtest_main \ |
| 16 | libverifier |
| 17 | |
| 18 | $(foreach file,$(test_src_files), \ |
| 19 | $(eval include $(CLEAR_VARS)) \ |
| 20 | $(eval LOCAL_SHARED_LIBRARIES := $(shared_libraries)) \ |
| 21 | $(eval LOCAL_STATIC_LIBRARIES := $(static_libraries)) \ |
| 22 | $(eval LOCAL_SRC_FILES := $(file)) \ |
| 23 | $(eval LOCAL_MODULE := $(notdir $(file:%.cpp=%))) \ |
| 24 | $(eval LOCAL_C_INCLUDES := $(LOCAL_PATH)/..) \ |
Ethan Yonker | 75bf041 | 2014-11-21 13:54:27 -0600 | [diff] [blame] | 25 | $(eval LOCAL_MODULE_TAGS := optional) \ |
Kenny Root | 7a4adb5 | 2013-10-09 10:14:35 -0700 | [diff] [blame] | 26 | $(eval include $(BUILD_NATIVE_TEST)) \ |
Ethan Yonker | 75bf041 | 2014-11-21 13:54:27 -0600 | [diff] [blame] | 27 | ) |