blob: 36d88905a3697beb624dba0248c758669737fcd8 [file] [log] [blame]
Janis Danisevskis0f35e5a2016-10-12 11:33:13 +01001LOCAL_PATH := $(call my-dir)
2
3include $(CLEAR_VARS)
4LOCAL_MODULE := android.hardware.keymaster@3.0-impl
5LOCAL_MODULE_RELATIVE_PATH := hw
6LOCAL_SRC_FILES := \
7 KeymasterDevice.cpp \
8
9LOCAL_SHARED_LIBRARIES := \
10 liblog \
11 libsoftkeymasterdevice \
12 libcrypto \
13 libkeymaster1 \
14 libhidlbase \
15 libhidltransport \
16 libhwbinder \
17 libutils \
18 libhardware \
19 android.hardware.keymaster@3.0
20
21include $(BUILD_SHARED_LIBRARY)
22
23include $(CLEAR_VARS)
24LOCAL_MODULE_RELATIVE_PATH := hw
25LOCAL_MODULE := android.hardware.keymaster@3.0-service
26LOCAL_INIT_RC := android.hardware.keymaster@3.0-service.rc
27LOCAL_SRC_FILES := \
28 service.cpp
29
30LOCAL_SHARED_LIBRARIES := \
31 liblog \
32 libcutils \
33 libdl \
34 libbase \
35 libutils \
36 libhardware_legacy \
37 libhardware \
38 libhwbinder \
39 libhidlbase \
40 libhidltransport \
41 android.hardware.keymaster@3.0
42
43include $(BUILD_EXECUTABLE)