Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2335)

Unified Diff: build/android/gdb_content_shell

Issue 10377059: Android content shell bringup. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: build/android/gdb_content_shell
diff --git a/build/android/gdb_content_shell b/build/android/gdb_content_shell
index 54a705d42f0f3707e0be284333f921e250101339..94c0962872f7de9079aaef14f42fd64e0cf77b08 100755
--- a/build/android/gdb_content_shell
+++ b/build/android/gdb_content_shell
@@ -72,8 +72,9 @@ fi
# gdb commands
cmdfile=$(mktemp /tmp/gdb_android_XXXXXXXX)
cat >$cmdfile<<EOF
-set solib-absolute-prefix null
+# set solib-absolute-prefix null
Yaron 2012/05/09 01:01:42 Can you remove instead? Why is this needed?
John Grabowski 2012/05/09 17:18:15 This work isn't done; still not happy with debugga
set solib-search-path ${shared_lib_dir}
+file ${app_process}
target remote :4321
EOF
@@ -85,5 +86,6 @@ else
echo Using $gdb
fi
-${gdb} -x $cmdfile $* $app_process
+# ${gdb} -x $cmdfile $* $app_process
Yaron 2012/05/09 01:01:42 Remove
+${gdb} -x $cmdfile $*
rm $cmdfile

Powered by Google App Engine
This is Rietveld 408576698