mirror of
https://github.com/Evolution-X/hardware_interfaces
synced 2026-02-01 22:04:26 +00:00
Change-Id: I8224ba28abec42cfaea26b147acbcd1a27e09a9b Signed-off-by: Alexey Polyudov <apolyudov@google.com>
41 lines
804 B
Makefile
41 lines
804 B
Makefile
LOCAL_PATH := $(call my-dir)
|
|
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_MODULE_RELATIVE_PATH := hw
|
|
LOCAL_MODULE := android.hardware.gatekeeper@1.0-impl
|
|
|
|
LOCAL_SRC_FILES := \
|
|
Gatekeeper.cpp \
|
|
|
|
LOCAL_SHARED_LIBRARIES := \
|
|
android.hardware.gatekeeper@1.0 \
|
|
libhardware \
|
|
libhidlbase \
|
|
libhidltransport \
|
|
libhwbinder \
|
|
libutils \
|
|
liblog \
|
|
|
|
include $(BUILD_SHARED_LIBRARY)
|
|
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_MODULE_RELATIVE_PATH := hw
|
|
LOCAL_MODULE := android.hardware.gatekeeper@1.0-service
|
|
LOCAL_INIT_RC := android.hardware.gatekeeper@1.0-service.rc
|
|
|
|
LOCAL_SRC_FILES := \
|
|
service.cpp \
|
|
|
|
LOCAL_SHARED_LIBRARIES := \
|
|
android.hardware.gatekeeper@1.0 \
|
|
libhardware \
|
|
libhidlbase \
|
|
libhidltransport \
|
|
libhwbinder \
|
|
libutils \
|
|
liblog \
|
|
|
|
include $(BUILD_EXECUTABLE)
|