summaryrefslogtreecommitdiff
path: root/tests/Android.mk
blob: cfec2d64635ed741143c8db903c657e0f0588b4a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# Build the scrypt unit tests

LOCAL_PATH:= $(call my-dir)
include $(CLEAR_VARS)

LOCAL_ADDITIONAL_DEPENDENCIES := $(LOCAL_PATH)/Android.mk

LOCAL_CLANG := true

LOCAL_SRC_FILES:= \
    scrypt_test.cpp

LOCAL_C_INCLUDES := $(LOCAL_PATH)/../lib/crypto

LOCAL_SHARED_LIBRARIES := \
    libcrypto

LOCAL_STATIC_LIBRARIES := \
    libscrypt_static \

LOCAL_MODULE := scrypt_test

include $(BUILD_NATIVE_TEST)