aboutsummaryrefslogtreecommitdiffhomepage
path: root/platform_tools
diff options
context:
space:
mode:
authorGravatar djsollen <djsollen@google.com>2016-04-27 13:44:28 -0700
committerGravatar Commit bot <commit-bot@chromium.org>2016-04-27 13:44:28 -0700
commitd574c98c7dcb3443b0c8f0b4e84d46ca83a8dca1 (patch)
tree7a17e96643711a4c44a411e1745d240ce29ec0ce /platform_tools
parent48d6f88479e72efaf9b9d8f9c0769acb1ba773db (diff)
Make the default android build be release_developer.
Diffstat (limited to 'platform_tools')
-rwxr-xr-xplatform_tools/android/bin/android_setup.sh4
1 files changed, 3 insertions, 1 deletions
diff --git a/platform_tools/android/bin/android_setup.sh b/platform_tools/android/bin/android_setup.sh
index ee1160e6fa..503ee023e7 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