summaryrefslogtreecommitdiffstats
path: root/cmds/bugreport/Android.mk
diff options
context:
space:
mode:
authorMike Lockwood <lockwood@android.com>2009-09-03 16:12:09 -0400
committerMike Lockwood <lockwood@android.com>2009-09-03 16:12:09 -0400
commit308f31d8e208891df283e90e0400f899b6c598a8 (patch)
treeb093e3585fe3108e47ee947aca6e4fac48994290 /cmds/bugreport/Android.mk
parentd42685d5de1dbd6d75b48d42418f370adaa4daef (diff)
downloadframeworks_base-308f31d8e208891df283e90e0400f899b6c598a8.zip
frameworks_base-308f31d8e208891df283e90e0400f899b6c598a8.tar.gz
frameworks_base-308f31d8e208891df283e90e0400f899b6c598a8.tar.bz2
Replace the bugreport symlink with a tool that starts the new dumpstate service.
Change-Id: I57acae2344a264751f38b910e1e2bc750a1f1d24 Signed-off-by: Mike Lockwood <lockwood@android.com>
Diffstat (limited to 'cmds/bugreport/Android.mk')
-rw-r--r--cmds/bugreport/Android.mk14
1 files changed, 14 insertions, 0 deletions
diff --git a/cmds/bugreport/Android.mk b/cmds/bugreport/Android.mk
new file mode 100644
index 0000000..631c219
--- /dev/null
+++ b/cmds/bugreport/Android.mk
@@ -0,0 +1,14 @@
+ifneq ($(TARGET_SIMULATOR),true)
+
+LOCAL_PATH:= $(call my-dir)
+include $(CLEAR_VARS)
+
+LOCAL_SRC_FILES:= bugreport.c
+
+LOCAL_MODULE:= bugreport
+
+LOCAL_SHARED_LIBRARIES := libcutils
+
+include $(BUILD_EXECUTABLE)
+
+endif