blob: 0b1518447f924741cc2dd827331252579ab05256 [file] [log] [blame]
Felipe Lemee83f9fb2016-11-15 15:08:47 -08001LOCAL_PATH := $(call my-dir)
2
3include $(CLEAR_VARS)
Steven Moreland92a95b22016-12-01 09:29:48 -08004LOCAL_MODULE := android.hardware.dumpstate@1.0-service
5LOCAL_INIT_RC := android.hardware.dumpstate@1.0-service.rc
Felipe Lemee83f9fb2016-11-15 15:08:47 -08006LOCAL_MODULE_RELATIVE_PATH := hw
7LOCAL_SRC_FILES := \
8 DumpstateDevice.cpp \
Steven Moreland92a95b22016-12-01 09:29:48 -08009 service.cpp
Felipe Lemee83f9fb2016-11-15 15:08:47 -080010
11LOCAL_SHARED_LIBRARIES := \
12 android.hardware.dumpstate@1.0 \
13 libbase \
14 libcutils \
Steven Moreland92a95b22016-12-01 09:29:48 -080015 libdumpstateutil \
Felipe Lemee83f9fb2016-11-15 15:08:47 -080016 libhidlbase \
17 libhidltransport \
18 libhwbinder \
19 liblog \
20 libutils
21
Steven Moreland92a95b22016-12-01 09:29:48 -080022include $(BUILD_EXECUTABLE)