Files
android_bootable_recovery/crypto/scrypt/tests/Android.mk
Ethan Yonker c30edd12c5 Fix potential tree conflicts with scrypt
Change-Id: Iac40957e40cb9c10795dd6a1f67ca902c95dd9bc
2014-11-08 07:05:47 -06:00

24 lines
397 B
Makefile

# 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_twrp
include $(BUILD_NATIVE_TEST)