blob: 2661211b139dba3ece148ce84e602a82fd0421e6 [file] [log] [blame]
Kenny Root4fd0db72012-03-16 13:19:07 -07001# Build the keymaster unit tests
2
3LOCAL_PATH:= $(call my-dir)
4include $(CLEAR_VARS)
5
6LOCAL_SRC_FILES:= \
7 keymaster_test.cpp
8
9# Note that "bionic" is needed because of stlport
10LOCAL_C_INCLUDES := \
11 bionic \
Kenny Root4fd0db72012-03-16 13:19:07 -070012 external/gtest/include \
13 external/stlport/stlport
14
15LOCAL_SHARED_LIBRARIES := \
16 liblog \
17 libutils \
18 libstlport \
19 libhardware
20
21LOCAL_STATIC_LIBRARIES := \
22 libgtest \
23 libgtest_main
24
25LOCAL_MODULE := keymaster_test
26
27LOCAL_MODULE_TAGS := tests
28
29include $(BUILD_EXECUTABLE)