Make the default android build be release_developer.
authordjsollen <djsollen@google.com>
Wed, 27 Apr 2016 20:44:28 +0000 (13:44 -0700)
committerCommit bot <commit-bot@chromium.org>
Wed, 27 Apr 2016 20:44:28 +0000 (13:44 -0700)
GOLD_TRYBOT_URL= https://gold.skia.org/search2?unt=true&query=source_type%3Dgm&master=false&issue=1929663002

Review-Url: https://codereview.chromium.org/1929663002

platform_tools/android/bin/android_setup.sh

index ee1160e..503ee02 100755 (executable)
@@ -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