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

Unified Diff: platform_tools/android/bin/android_setup.sh

Issue 1929663002: Make the default android build be release_developer. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 4 years, 8 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: platform_tools/android/bin/android_setup.sh
diff --git a/platform_tools/android/bin/android_setup.sh b/platform_tools/android/bin/android_setup.sh
index ee1160e6fa2049f3cf1c90b66fed9607958fcc74..503ee023e724651857aac811c9dfc1d933d0bc2b 100755
--- a/platform_tools/android/bin/android_setup.sh
+++ b/platform_tools/android/bin/android_setup.sh
@@ -11,7 +11,7 @@
# Fail-fast if anything in the script fails.
set -e
-BUILDTYPE=${BUILDTYPE-Debug}
+BUILDTYPE=${BUILDTYPE-Release_Developer}
USE_CLANG="true"
while (( "$#" )); do
@@ -28,6 +28,8 @@ while (( "$#" )); do
elif [[ "$1" == "-t" ]]; then
BUILDTYPE=$2
shift
+ elif [[ "$1" == "--debug" ]]; then
+ BUILDTYPE=Debug
elif [[ "$1" == "--release" ]]; then
BUILDTYPE=Release
elif [[ "$1" == "--gcc" ]]; then
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698