blob: b49d8a1f26df978607d61aab7e5fe482c92cccc7 [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
Dan Albert01396f12016-03-03 10:43:38 -080011LOCAL_C_INCLUDES := $(LOCAL_PATH)/../lib/crypto
Dees Troy4dff2e62013-11-10 04:11:43 +000012
13LOCAL_SHARED_LIBRARIES := \
14 libcrypto
15
16LOCAL_STATIC_LIBRARIES := \
17 libscrypt_static \
18 libgtest \
19 libgtest_main
20
Dees Troy87da4242014-12-12 18:50:07 +000021LOCAL_MODULE_TAGS := optional
Ethan Yonker253368a2014-11-25 15:00:52 -060022LOCAL_MODULE := scrypttwrp_test
Dees Troy4dff2e62013-11-10 04:11:43 +000023
24include $(BUILD_NATIVE_TEST)