blob: b25e1c42055e61cdea47ff322a1937f406c3cd1d [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
6LOCAL_ADDITIONAL_DEPENDENCIES := $(LOCAL_PATH)/Android.mk
7
8LOCAL_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
23LOCAL_MODULE := scrypt_test
24
25include $(BUILD_NATIVE_TEST)