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 := \ |
Adam Langley | 41405bb | 2015-01-22 16:45:28 -0800 | [diff] [blame] | 8 | system/core/fs_mgr/include |
Kenny Root | acc9e7d | 2010-06-18 19:06:50 -0700 | [diff] [blame] | 9 | |
Paul Crowley | 4315c6a | 2016-12-06 08:22:04 -0800 | [diff] [blame] | 10 | LOCAL_STATIC_LIBRARIES := libselinux libvold liblog libcrypto |
Dan Albert | b2aaf3a | 2014-09-12 10:48:12 -0700 | [diff] [blame] | 11 | LOCAL_SRC_FILES := VolumeManager_test.cpp |
12 | LOCAL_MODULE := vold_tests | ||||
13 | LOCAL_MODULE_TAGS := eng tests | ||||
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 | include $(BUILD_NATIVE_TEST) |