mirror of
https://github.com/Evolution-X/hardware_interfaces
synced 2026-02-02 06:22:53 +00:00
- dumpstate will not have passthrough mode. All new implementations are required anyway. It makes more sense to just have them binderized by default. Test: compiles/put on device in right location/running Bug: 31982882 Change-Id: Ib0c12a2e0da931060f0e9e990fb63b6c7bc9e872
23 lines
495 B
Makefile
23 lines
495 B
Makefile
LOCAL_PATH := $(call my-dir)
|
|
|
|
include $(CLEAR_VARS)
|
|
LOCAL_MODULE := android.hardware.dumpstate@1.0-service
|
|
LOCAL_INIT_RC := android.hardware.dumpstate@1.0-service.rc
|
|
LOCAL_MODULE_RELATIVE_PATH := hw
|
|
LOCAL_SRC_FILES := \
|
|
DumpstateDevice.cpp \
|
|
service.cpp
|
|
|
|
LOCAL_SHARED_LIBRARIES := \
|
|
android.hardware.dumpstate@1.0 \
|
|
libbase \
|
|
libcutils \
|
|
libdumpstateutil \
|
|
libhidlbase \
|
|
libhidltransport \
|
|
libhwbinder \
|
|
liblog \
|
|
libutils
|
|
|
|
include $(BUILD_EXECUTABLE)
|