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

Side by Side Diff: build/android/adb_gdb

Issue 23517004: Remove the Android DumpRenderTree GDB helper script. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 3 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | build/android/adb_gdb_drt » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 #!/bin/bash 1 #!/bin/bash
2 # 2 #
3 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 3 # Copyright (c) 2012 The Chromium Authors. All rights reserved.
4 # Use of this source code is governed by a BSD-style license that can be 4 # Use of this source code is governed by a BSD-style license that can be
5 # found in the LICENSE file. 5 # found in the LICENSE file.
6 # 6 #
7 7
8 # A generic script used to attach to a running Chromium process and 8 # A generic script used to attach to a running Chromium process and
9 # debug it. Most users should not use this directly, but one of the 9 # debug it. Most users should not use this directly, but one of the
10 # wrapper scripts like adb_gdb_content_shell, or adb_gdb_drt 10 # wrapper scripts like adb_gdb_content_shell
11 # 11 #
12 # Use --help to print full usage instructions. 12 # Use --help to print full usage instructions.
13 # 13 #
14 14
15 PROGNAME=$(basename "$0") 15 PROGNAME=$(basename "$0")
16 PROGDIR=$(dirname "$0") 16 PROGDIR=$(dirname "$0")
17 17
18 # Location of Chromium-top-level sources. 18 # Location of Chromium-top-level sources.
19 CHROMIUM_SRC=$(cd "$PROGDIR"/../.. && pwd 2>/dev/null) 19 CHROMIUM_SRC=$(cd "$PROGDIR"/../.. && pwd 2>/dev/null)
20 20
(...skipping 933 matching lines...) Expand 10 before | Expand all | Expand 10 after
954 954
955 if [ "$VERBOSE" -gt 0 ]; then 955 if [ "$VERBOSE" -gt 0 ]; then
956 echo "### START $COMMANDS" 956 echo "### START $COMMANDS"
957 cat $COMMANDS 957 cat $COMMANDS
958 echo "### END $COMMANDS" 958 echo "### END $COMMANDS"
959 fi 959 fi
960 960
961 log "Launching gdb client: $GDB $GDBARGS -x $COMMANDS" 961 log "Launching gdb client: $GDB $GDBARGS -x $COMMANDS"
962 $GDB $GDBARGS -x $COMMANDS && 962 $GDB $GDBARGS -x $COMMANDS &&
963 rm -f "$GDBSERVER_PIDFILE" 963 rm -f "$GDBSERVER_PIDFILE"
OLDNEW
« no previous file with comments | « no previous file | build/android/adb_gdb_drt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698