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 |
Janis Danisevskis | 2ad849b | 2017-02-07 08:52:08 +0000 | [diff] [blame] | 11 | |
Dan Albert | b2aaf3a | 2014-09-12 10:48:12 -0700 | [diff] [blame] | 12 | LOCAL_SRC_FILES := VolumeManager_test.cpp |
| 13 | LOCAL_MODULE := vold_tests |
| 14 | LOCAL_MODULE_TAGS := eng tests |
Kenny Root | acc9e7d | 2010-06-18 19:06:50 -0700 | [diff] [blame] | 15 | |
Dan Albert | b2aaf3a | 2014-09-12 10:48:12 -0700 | [diff] [blame] | 16 | include $(BUILD_NATIVE_TEST) |
Janis Danisevskis | 2ad849b | 2017-02-07 08:52:08 +0000 | [diff] [blame] | 17 | |
| 18 | include $(CLEAR_VARS) |
| 19 | LOCAL_ADDITIONAL_DEPENDENCIES := $(LOCAL_PATH)/Android.mk |
| 20 | |
| 21 | # LOCAL_C_INCLUDES := \ |
| 22 | system/core/fs_mgr/include |
| 23 | |
| 24 | LOCAL_STATIC_LIBRARIES := libselinux libvold liblog libcrypto |
| 25 | LOCAL_SHARED_LIBRARIES := \ |
| 26 | libutils \ |
| 27 | libbase \ |
| 28 | libhardware \ |
| 29 | libhardware_legacy \ |
| 30 | libhwbinder \ |
| 31 | libhidlbase \ |
| 32 | libkeystore_binder \ |
| 33 | android.hardware.keymaster@3.0 |
| 34 | |
| 35 | LOCAL_SRC_FILES := CryptfsScryptHidlizationEquivalence_test.cpp |
| 36 | LOCAL_MODULE := vold_cryptfs_scrypt_hidlization_equivalence_test |
| 37 | LOCAL_MODULE_TAGS := eng tests |
| 38 | |
| 39 | include $(BUILD_NATIVE_TEST) |