blob: 94dc1eaad51d22c5b85e55571625f00cbaae6406 [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 \
17 libhwbinder \
18 libutils \
19 liblog \
20
21include $(BUILD_SHARED_LIBRARY)
22
23include $(CLEAR_VARS)
24
25LOCAL_MODULE_RELATIVE_PATH := hw
Steven Morelanda0da1a12017-02-13 09:59:06 -080026LOCAL_PROPRIETARY_MODULE := true
Alexey Polyudov586a32f2016-08-29 12:08:44 -070027LOCAL_MODULE := android.hardware.gatekeeper@1.0-service
28LOCAL_INIT_RC := android.hardware.gatekeeper@1.0-service.rc
29
30LOCAL_SRC_FILES := \
31 service.cpp \
32
33LOCAL_SHARED_LIBRARIES := \
34 android.hardware.gatekeeper@1.0 \
35 libhardware \
36 libhidlbase \
37 libhidltransport \
38 libhwbinder \
39 libutils \
40 liblog \
41
42include $(BUILD_EXECUTABLE)