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

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

Issue 22929006: default to device type of last build if no device type is given (Closed) Base URL: https://skia.googlecode.com/svn/trunk
Patch Set: addressing comments Created 7 years, 4 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
(Empty)
1 #!/bin/bash
2 #
3
4 UTIL_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
5
6 if [ -z "$SKIA_OUT" ]
7 then
8
9 if [ ! -f .android_config ]
10 then
11 echo "Unable to find the .android_config file"
12 exit 1;
13 fi
14
15 export SKIA_OUT=$(cat .android_config)
16
17 if [ ! -d ${SKIA_OUT} ]
18 then
19 echo "The contents of .android_config are invalid"
20 exit 1;
21 fi
22 fi
OLDNEW
« platform_tools/android/bin/android_make ('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