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