blob: 60257e0f9d17572ef086402c659b93d9d6c2dc11 [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
Ethan Yonkerc30edd12014-11-08 07:05:47 -060021LOCAL_MODULE := scrypt_test_twrp
Dees Troy4dff2e62013-11-10 04:11:43 +000022
23include $(BUILD_NATIVE_TEST)