diff options
author | Christopher Ferris <cferris@google.com> | 2013-10-02 12:26:48 -0700 |
---|---|---|
committer | Christopher Ferris <cferris@google.com> | 2013-10-03 11:07:56 -0700 |
commit | 365e4ae74568274ffd692c12fd7285a230d49a67 (patch) | |
tree | 1cb6604d012bfb2556b790f3ec987147ed5e6d61 /debuggerd/Android.mk | |
parent | f3217de32cff8f82a22de84f35d782307a4ed4da (diff) |
Update debuggerd to use libbacktrace.
Remove all of the code in debuggerd that uses libcorkscrew directly
and replace with libbacktrace.
Also do a bit of refactoring to clean up some functions that were
passing around variables that weren't used.
Bug: 8410085
Change-Id: I27da4fbe3f12ce38a85b4432fc1119984c9c391b
Diffstat (limited to 'debuggerd/Android.mk')
-rw-r--r-- | debuggerd/Android.mk | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/debuggerd/Android.mk b/debuggerd/Android.mk index 8621e9cb6..2fe7c7aa9 100644 --- a/debuggerd/Android.mk +++ b/debuggerd/Android.mk @@ -24,11 +24,11 @@ LOCAL_CFLAGS += -DWITH_VFP_D32 endif # ARCH_ARM_HAVE_VFP_D32 LOCAL_SHARED_LIBRARIES := \ + libbacktrace \ + libc \ libcutils \ liblog \ - libc \ - libcorkscrew \ - libselinux + libselinux \ include $(BUILD_EXECUTABLE) |