mirror of
https://github.com/Evolution-X/hardware_interfaces
synced 2026-02-01 11:36:00 +00:00
19 lines
484 B
Makefile
19 lines
484 B
Makefile
LOCAL_PATH := $(call my-dir)
|
|
|
|
include $(CLEAR_VARS)
|
|
LOCAL_MODULE := android.hardware.example.extension.light@2.0-service
|
|
LOCAL_INIT_RC := android.hardware.example.extension.light@2.0-service.rc
|
|
LOCAL_MODULE_RELATIVE_PATH := hw
|
|
LOCAL_SRC_FILES := \
|
|
Light.cpp \
|
|
|
|
LOCAL_SHARED_LIBRARIES := \
|
|
libhidlbase \
|
|
libhidltransport \
|
|
libhwbinder \
|
|
libutils \
|
|
android.hardware.light@2.0 \
|
|
android.hardware.example.extension.light@2.0 \
|
|
|
|
include $(BUILD_SHARED_LIBRARY)
|