Dees Troy | 4dff2e6 | 2013-11-10 04:11:43 +0000 | [diff] [blame] | 1 | # Build the scrypt unit tests |
| 2 | |
| 3 | LOCAL_PATH:= $(call my-dir) |
| 4 | include $(CLEAR_VARS) |
| 5 | |
Ethan Yonker | 253368a | 2014-11-25 15:00:52 -0600 | [diff] [blame] | 6 | LOCAL_ADDITIONAL_DEPENDENCIES := $(LOCAL_PATH)/Android.mk |
| 7 | |
Dees Troy | 4dff2e6 | 2013-11-10 04:11:43 +0000 | [diff] [blame] | 8 | LOCAL_SRC_FILES:= \ |
| 9 | scrypt_test.cpp |
| 10 | |
Dan Albert | 01396f1 | 2016-03-03 10:43:38 -0800 | [diff] [blame] | 11 | LOCAL_C_INCLUDES := $(LOCAL_PATH)/../lib/crypto |
Dees Troy | 4dff2e6 | 2013-11-10 04:11:43 +0000 | [diff] [blame] | 12 | |
| 13 | LOCAL_SHARED_LIBRARIES := \ |
| 14 | libcrypto |
| 15 | |
| 16 | LOCAL_STATIC_LIBRARIES := \ |
| 17 | libscrypt_static \ |
| 18 | libgtest \ |
| 19 | libgtest_main |
| 20 | |
Dees Troy | 87da424 | 2014-12-12 18:50:07 +0000 | [diff] [blame] | 21 | LOCAL_MODULE_TAGS := optional |
Ethan Yonker | 253368a | 2014-11-25 15:00:52 -0600 | [diff] [blame] | 22 | LOCAL_MODULE := scrypttwrp_test |
Dees Troy | 4dff2e6 | 2013-11-10 04:11:43 +0000 | [diff] [blame] | 23 | |
| 24 | include $(BUILD_NATIVE_TEST) |