mirror of
https://github.com/Evolution-X/hardware_interfaces
synced 2026-02-01 22:04:26 +00:00
BUG: 31982882 Test: manually built it Change-Id: I3dd1d681061d16059ec9cf67869f20759fb75cd0
23 lines
448 B
Makefile
23 lines
448 B
Makefile
LOCAL_PATH := $(call my-dir)
|
|
|
|
include $(CLEAR_VARS)
|
|
LOCAL_MODULE := android.hardware.dumpstate@1.0-impl
|
|
LOCAL_MODULE_RELATIVE_PATH := hw
|
|
LOCAL_SRC_FILES := \
|
|
DumpstateDevice.cpp \
|
|
|
|
LOCAL_SHARED_LIBRARIES := \
|
|
android.hardware.dumpstate@1.0 \
|
|
libbase \
|
|
libcutils \
|
|
libhidlbase \
|
|
libhidltransport \
|
|
libhwbinder \
|
|
liblog \
|
|
libutils
|
|
|
|
LOCAL_STATIC_LIBRARIES := \
|
|
libdumpstateutil
|
|
|
|
include $(BUILD_SHARED_LIBRARY)
|