blob: e3b7d10a0e7618113c4a8878e456413ff7ea586f [file] [log] [blame]
Alexey Polyudov586a32f2016-08-29 12:08:44 -07001LOCAL_PATH := $(call my-dir)
2
3include $(CLEAR_VARS)
4
5LOCAL_MODULE_RELATIVE_PATH := hw
6LOCAL_MODULE := android.hardware.gatekeeper@1.0-impl
7
8LOCAL_SRC_FILES := \
9 Gatekeeper.cpp \
10
11LOCAL_SHARED_LIBRARIES := \
12 android.hardware.gatekeeper@1.0 \
13 libhardware \
14 libhidlbase \
15 libhidltransport \
16 libhwbinder \
17 libutils \
18 liblog \
19
20include $(BUILD_SHARED_LIBRARY)
21
22include $(CLEAR_VARS)
23
24LOCAL_MODULE_RELATIVE_PATH := hw
25LOCAL_MODULE := android.hardware.gatekeeper@1.0-service
26LOCAL_INIT_RC := android.hardware.gatekeeper@1.0-service.rc
27
28LOCAL_SRC_FILES := \
29 service.cpp \
30
31LOCAL_SHARED_LIBRARIES := \
32 android.hardware.gatekeeper@1.0 \
33 libhardware \
34 libhidlbase \
35 libhidltransport \
36 libhwbinder \
37 libutils \
38 liblog \
39
40include $(BUILD_EXECUTABLE)