summaryrefslogtreecommitdiffstats
path: root/tests/keymaster/Android.mk
blob: c420db9fd2263d3201821065821db839a7acb372 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# Build the keymaster unit tests

LOCAL_PATH:= $(call my-dir)
include $(CLEAR_VARS)

LOCAL_SRC_FILES:= \
    keymaster_test.cpp

LOCAL_C_INCLUDES := \
    external/openssl/include \

LOCAL_SHARED_LIBRARIES := \
    liblog \
    libutils \
    libcrypto \
    libhardware \

LOCAL_MODULE := keymaster_test

LOCAL_MODULE_TAGS := tests

include $(BUILD_NATIVE_TEST)