Files
android_bootable_recovery/crypto/scrypt/tests/Android.mk
Dan Albert 01396f1b13 scrypt: Don't hardcode gtest path.
Bug: http://b/16574165
Change-Id: Ieb63fb6a73f0fb2ab3260bc5eabca7d86d892fbd
2018-04-22 21:57:35 +03:00

25 lines
451 B
Makefile

# 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 := $(LOCAL_PATH)/../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)