blob: c20b41da9afecf8e6b711adb2c3eefee2bd86417 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
# Build the scrypt unit tests
LOCAL_PATH:= $(call my-dir)
include $(CLEAR_VARS)
LOCAL_ADDITIONAL_DEPENDENCIES := $(LOCAL_PATH)/Android.mk
LOCAL_SRC_FILES:= \
scrypt_test.cpp
LOCAL_C_INCLUDES := \
external/gtest/include \
external/scrypt/lib/crypto
LOCAL_SHARED_LIBRARIES := \
libcrypto
LOCAL_STATIC_LIBRARIES := \
libscrypt_static \
libgtest \
libgtest_main
LOCAL_MODULE_TAGS := optional
LOCAL_MODULE := scrypttwrp_test
include $(BUILD_NATIVE_TEST)
|