summaryrefslogtreecommitdiffstats
path: root/debuggerd/Android.mk
diff options
context:
space:
mode:
authorChristopher Ferris <cferris@google.com>2015-02-27 13:39:47 -0800
committerChristopher Ferris <cferris@google.com>2015-03-17 15:13:35 -0700
commita21bd93ef5223ce585985e3b426ff5f07c9f4499 (patch)
treedbac2064ebc3aa11dab338ff75a1b37b1d481252 /debuggerd/Android.mk
parent837a67393d8493cccb28f20e2e00c5fc1e3b0272 (diff)
downloadsystem_core-a21bd93ef5223ce585985e3b426ff5f07c9f4499.zip
system_core-a21bd93ef5223ce585985e3b426ff5f07c9f4499.tar.gz
system_core-a21bd93ef5223ce585985e3b426ff5f07c9f4499.tar.bz2
Print the build id of shared libraries if present.
For every map that has a name, and if it's a mapped in shared library, print the build id. Refactor the way dump_all_maps logs data. Refactor the way stack segments are dumped. Bug: 19371018 Change-Id: Ic08d05a4b13f128925743936fb84d8059f7cb56f
Diffstat (limited to 'debuggerd/Android.mk')
-rw-r--r--debuggerd/Android.mk3
1 files changed, 2 insertions, 1 deletions
diff --git a/debuggerd/Android.mk b/debuggerd/Android.mk
index 8cc4682..dd53296 100644
--- a/debuggerd/Android.mk
+++ b/debuggerd/Android.mk
@@ -5,6 +5,7 @@ include $(CLEAR_VARS)
LOCAL_SRC_FILES:= \
backtrace.cpp \
debuggerd.cpp \
+ elf_utils.cpp \
getevent.cpp \
tombstone.cpp \
utility.cpp \
@@ -28,6 +29,7 @@ endif
LOCAL_SHARED_LIBRARIES := \
libbacktrace \
+ libbase \
libcutils \
liblog \
libselinux \
@@ -38,7 +40,6 @@ LOCAL_MODULE := debuggerd
LOCAL_MODULE_STEM_32 := debuggerd
LOCAL_MODULE_STEM_64 := debuggerd64
LOCAL_MULTILIB := both
-LOCAL_ADDITIONAL_DEPENDENCIES += $(LOCAL_PATH)/Android.mk
include $(BUILD_EXECUTABLE)