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

Side by Side Diff: platform_tools/android/bin/utils/setup_adb.sh

Issue 17910006: Add MD5 support when syncing debug files and option to just start gdbserver (Closed) Base URL: https://skia.googlecode.com/svn/trunk
Patch Set: Created 7 years, 5 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
OLDNEW
1 #!/bin/bash 1 #!/bin/bash
2 # 2 #
3 3
4 UTIL_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" 4 UTIL_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
5 5
6 if [ "$(which adb)" != "" ]; then 6 if [ "$(which adb)" != "" ]; then
7 ADB="$(which adb)" 7 ADB="$(which adb)"
8 elif [ $(uname) == "Linux" ]; then 8 elif [ $(uname) == "Linux" ]; then
9 ADB=$UTIL_DIR/../linux/adb 9 ADB=$UTIL_DIR/../linux/adb
10 elif [ $(uname) == "Darwin" ]; then 10 elif [ $(uname) == "Darwin" ]; then
11 ADB=$UTIL_DIR/../mac/adb 11 ADB=$UTIL_DIR/../mac/adb
12 else 12 else
13 echo "ERROR: Could not find ADB!" 13 echo "ERROR: Could not find ADB!"
14 exit 1; 14 exit 1;
15 fi 15 fi
16 16
17 echo "ADB is: $ADB" 17 #echo "ADB is: $ADB"
borenet 2013/06/27 12:46:42 Left in on purpose?
djsollen 2013/06/27 13:34:24 just in case I need to quickly debug
OLDNEW
« platform_tools/android/bin/android_setup.sh ('K') | « platform_tools/android/bin/android_setup.sh ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698