Kenny Root | acc9e7d | 2010-06-18 19:06:50 -0700 | [diff] [blame] | 1 | # Build the unit tests. |
| 2 | LOCAL_PATH := $(call my-dir) |
Dan Albert | b2aaf3a | 2014-09-12 10:48:12 -0700 | [diff] [blame] | 3 | |
Kenny Root | acc9e7d | 2010-06-18 19:06:50 -0700 | [diff] [blame] | 4 | include $(CLEAR_VARS) |
Dan Albert | b2aaf3a | 2014-09-12 10:48:12 -0700 | [diff] [blame] | 5 | LOCAL_ADDITIONAL_DEPENDENCIES := $(LOCAL_PATH)/Android.mk |
Kenny Root | acc9e7d | 2010-06-18 19:06:50 -0700 | [diff] [blame] | 6 | |
Dan Albert | b2aaf3a | 2014-09-12 10:48:12 -0700 | [diff] [blame] | 7 | LOCAL_C_INCLUDES := \ |
| 8 | system/core/fs_mgr/include \ |
| 9 | external/openssl/include \ |
Kenny Root | acc9e7d | 2010-06-18 19:06:50 -0700 | [diff] [blame] | 10 | |
Dan Albert | b2aaf3a | 2014-09-12 10:48:12 -0700 | [diff] [blame] | 11 | LOCAL_SHARED_LIBRARIES := \ |
| 12 | liblog \ |
| 13 | libcrypto \ |
Kenny Root | acc9e7d | 2010-06-18 19:06:50 -0700 | [diff] [blame] | 14 | |
Dan Albert | b2aaf3a | 2014-09-12 10:48:12 -0700 | [diff] [blame] | 15 | LOCAL_STATIC_LIBRARIES := libvold |
| 16 | LOCAL_SRC_FILES := VolumeManager_test.cpp |
| 17 | LOCAL_MODULE := vold_tests |
| 18 | LOCAL_MODULE_TAGS := eng tests |
Kenny Root | acc9e7d | 2010-06-18 19:06:50 -0700 | [diff] [blame] | 19 | |
Dan Albert | b2aaf3a | 2014-09-12 10:48:12 -0700 | [diff] [blame] | 20 | include $(BUILD_NATIVE_TEST) |