8a0cb4ee0b
Bug: 8580410 Change-Id: I2ca4fa00dde0b574df3619134836bcb9315bd506
21 lines
295 B
Makefile
21 lines
295 B
Makefile
LOCAL_PATH:= $(call my-dir)
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_SRC_FILES:= \
|
|
dumpsys.cpp
|
|
|
|
LOCAL_SHARED_LIBRARIES := \
|
|
libutils \
|
|
liblog \
|
|
libbinder
|
|
|
|
|
|
ifeq ($(TARGET_OS),linux)
|
|
LOCAL_CFLAGS += -DXP_UNIX
|
|
#LOCAL_SHARED_LIBRARIES += librt
|
|
endif
|
|
|
|
LOCAL_MODULE:= dumpsys
|
|
|
|
include $(BUILD_EXECUTABLE)
|