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_SRC_FILES:= \
      9     scrypt_test.cpp
     10 
     11 LOCAL_C_INCLUDES := \
     12     external/gtest/include \
     13     external/scrypt/lib/crypto
     14 
     15 LOCAL_SHARED_LIBRARIES := \
     16     libcrypto
     17 
     18 LOCAL_STATIC_LIBRARIES := \
     19     libscrypt_static \
     20     libgtest \
     21     libgtest_main
     22 
     23 LOCAL_MODULE := scrypt_test
     24 
     25 include $(BUILD_NATIVE_TEST)
     26