2013-04-11 06:08:28 +08:00
|
|
|
# Copyright 2013 The Android Open Source Project
|
|
|
|
|
|
|
|
LOCAL_PATH := $(call my-dir)
|
|
|
|
|
2013-10-09 03:52:07 +08:00
|
|
|
include $(CLEAR_VARS)
|
2013-04-11 06:08:28 +08:00
|
|
|
LOCAL_MODULE := rsa_test
|
|
|
|
LOCAL_SRC_FILES := rsa_test.c
|
|
|
|
LOCAL_STATIC_LIBRARIES := libmincrypt
|
2013-10-09 03:52:07 +08:00
|
|
|
include $(BUILD_HOST_NATIVE_TEST)
|
2013-04-11 06:08:28 +08:00
|
|
|
|
2013-10-09 03:52:07 +08:00
|
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_MODULE := ecdsa_test
|
|
|
|
LOCAL_SRC_FILES := ecdsa_test.c
|
|
|
|
LOCAL_STATIC_LIBRARIES := libmincrypt
|
|
|
|
include $(BUILD_HOST_NATIVE_TEST)
|