summaryrefslogblamecommitdiffstats
path: root/crypto/scrypt/tests/Android.mk
blob: a4562de93b118b7f2c4d25388874d3c4f52315ca (plain) (tree)
1
2
3
4
5




                             

















                              
# Build the scrypt unit tests

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

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 := scrypt_test

include $(BUILD_NATIVE_TEST)