blob: 07c21023d3ed10abc44b6313b2acfc369255eb71 [file] [log] [blame]
Dees Troy4dff2e62013-11-10 04:11:43 +00001# Build the scrypt unit tests
2
3LOCAL_PATH:= $(call my-dir)
4include $(CLEAR_VARS)
5
Ethan Yonker253368a2014-11-25 15:00:52 -06006LOCAL_ADDITIONAL_DEPENDENCIES := $(LOCAL_PATH)/Android.mk
7
Dees Troy4dff2e62013-11-10 04:11:43 +00008LOCAL_SRC_FILES:= \
9 scrypt_test.cpp
10
11LOCAL_C_INCLUDES := \
12 external/gtest/include \
13 external/scrypt/lib/crypto
14
15LOCAL_SHARED_LIBRARIES := \
16 libcrypto
17
18LOCAL_STATIC_LIBRARIES := \
19 libscrypt_static \
20 libgtest \
21 libgtest_main
22
Ethan Yonker253368a2014-11-25 15:00:52 -060023LOCAL_MODULE := scrypttwrp_test
Dees Troy4dff2e62013-11-10 04:11:43 +000024
25include $(BUILD_NATIVE_TEST)