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 | |||||
Dees Troy | 4dff2e6 | 2013-11-10 04:11:43 +0000 | [diff] [blame] | 6 | LOCAL_SRC_FILES:= \ |
7 | scrypt_test.cpp | ||||
8 | |||||
9 | LOCAL_C_INCLUDES := \ | ||||
10 | external/gtest/include \ | ||||
11 | external/scrypt/lib/crypto | ||||
12 | |||||
13 | LOCAL_SHARED_LIBRARIES := \ | ||||
14 | libcrypto | ||||
15 | |||||
16 | LOCAL_STATIC_LIBRARIES := \ | ||||
17 | libscrypt_static \ | ||||
18 | libgtest \ | ||||
19 | libgtest_main | ||||
20 | |||||
21 | LOCAL_MODULE := scrypt_test | ||||
22 | |||||
23 | include $(BUILD_NATIVE_TEST) |