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

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: updating adb_pull f(x) 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
« no previous file with comments | « platform_tools/android/bin/android_setup.sh ('k') | no next file » | 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 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"
OLDNEW
« no previous file with comments | « 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