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