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