blob: 173fccc9b6e52a850cc163acf64f72f61b7cc8d4 [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
Kenny Root4fd0db72012-03-16 13:19:07 -07009LOCAL_SHARED_LIBRARIES := \
10 liblog \
11 libutils \
Kenny Root8467a6d2012-08-08 17:04:40 -070012 libcrypto \
Dan Albert04d21912014-09-26 10:55:44 -070013 libhardware \
Kenny Root4fd0db72012-03-16 13:19:07 -070014
15LOCAL_MODULE := keymaster_test
16
Chih-Hung Hsieh4224d9e2017-12-01 11:28:37 -080017LOCAL_CFLAGS := -Wall -Werror
18
Kenny Root4fd0db72012-03-16 13:19:07 -070019LOCAL_MODULE_TAGS := tests
20
Dan Albert04d21912014-09-26 10:55:44 -070021include $(BUILD_NATIVE_TEST)