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

Unified 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 side-by-side diff with in-line comments
Download patch
Index: platform_tools/android/bin/utils/setup_skia_out.sh
diff --git a/platform_tools/android/bin/utils/setup_skia_out.sh b/platform_tools/android/bin/utils/setup_skia_out.sh
deleted file mode 100644
index 78375a5cd7f6b55c68916f26a34792d29af51678..0000000000000000000000000000000000000000
--- a/platform_tools/android/bin/utils/setup_skia_out.sh
+++ /dev/null
@@ -1,22 +0,0 @@
-#!/bin/bash
-#
-
-UTIL_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
-
-if [ -z "$SKIA_OUT" ]
-then
-
- if [ ! -f .android_config ]
- then
- echo "Unable to find the .android_config file"
- exit 1;
- fi
-
- export SKIA_OUT=$(cat .android_config)
-
- if [ ! -d ${SKIA_OUT} ]
- then
- echo "The contents of .android_config are invalid"
- exit 1;
- fi
-fi
« 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