blob: d08453555c5051b062da3aee1e31767fe9e5ce28 [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
Steven Morelanda0da1a12017-02-13 09:59:06 -08006LOCAL_PROPRIETARY_MODULE := true
Alexey Polyudov586a32f2016-08-29 12:08:44 -07007LOCAL_MODULE := android.hardware.gatekeeper@1.0-impl
8
9LOCAL_SRC_FILES := \
10 Gatekeeper.cpp \
11
12LOCAL_SHARED_LIBRARIES := \
13 android.hardware.gatekeeper@1.0 \
14 libhardware \
15 libhidlbase \
16 libhidltransport \
Alexey Polyudov586a32f2016-08-29 12:08:44 -070017 libutils \
18 liblog \
19
20include $(BUILD_SHARED_LIBRARY)
21
22include $(CLEAR_VARS)
23
24LOCAL_MODULE_RELATIVE_PATH := hw
Steven Morelanda0da1a12017-02-13 09:59:06 -080025LOCAL_PROPRIETARY_MODULE := true
Alexey Polyudov586a32f2016-08-29 12:08:44 -070026LOCAL_MODULE := android.hardware.gatekeeper@1.0-service
27LOCAL_INIT_RC := android.hardware.gatekeeper@1.0-service.rc
28
29LOCAL_SRC_FILES := \
30 service.cpp \
31
32LOCAL_SHARED_LIBRARIES := \
33 android.hardware.gatekeeper@1.0 \
34 libhardware \
35 libhidlbase \
36 libhidltransport \
Alexey Polyudov586a32f2016-08-29 12:08:44 -070037 libutils \
38 liblog \
39
40include $(BUILD_EXECUTABLE)