mirror of
https://github.com/Evolution-X/hardware_interfaces
synced 2026-02-01 16:50:18 +00:00
It is not used by these services. Bug: 33241851 Bug: 37305530 Test: built and tested on sailfish Change-Id: I1f3f51981d7dfcf27e18d9495c747b7662867d31
45 lines
914 B
Makefile
45 lines
914 B
Makefile
LOCAL_PATH := $(call my-dir)
|
|
|
|
include $(CLEAR_VARS)
|
|
LOCAL_MODULE := android.hardware.light@2.0-impl
|
|
LOCAL_PROPRIETARY_MODULE := true
|
|
LOCAL_MODULE_RELATIVE_PATH := hw
|
|
LOCAL_SRC_FILES := \
|
|
Light.cpp \
|
|
|
|
LOCAL_SHARED_LIBRARIES := \
|
|
libhidlbase \
|
|
libhidltransport \
|
|
libutils \
|
|
liblog \
|
|
libcutils \
|
|
libhardware \
|
|
libbase \
|
|
libcutils \
|
|
android.hardware.light@2.0 \
|
|
|
|
include $(BUILD_SHARED_LIBRARY)
|
|
|
|
include $(CLEAR_VARS)
|
|
LOCAL_MODULE_RELATIVE_PATH := hw
|
|
LOCAL_PROPRIETARY_MODULE := true
|
|
LOCAL_MODULE := android.hardware.light@2.0-service
|
|
LOCAL_INIT_RC := android.hardware.light@2.0-service.rc
|
|
LOCAL_SRC_FILES := \
|
|
service.cpp \
|
|
|
|
LOCAL_SHARED_LIBRARIES := \
|
|
liblog \
|
|
libcutils \
|
|
libdl \
|
|
libbase \
|
|
libutils \
|
|
libhardware \
|
|
|
|
LOCAL_SHARED_LIBRARIES += \
|
|
libhidlbase \
|
|
libhidltransport \
|
|
android.hardware.light@2.0 \
|
|
|
|
include $(BUILD_EXECUTABLE)
|