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

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

Issue 692953002: Add support for clang to the android build scripts (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 6 years, 2 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/android_setup.sh
diff --git a/platform_tools/android/bin/android_setup.sh b/platform_tools/android/bin/android_setup.sh
index 65774e5d4dbf05da8059bbaf26f1155081bea634..e97b045da2d11b8fd936eec660f3c1329693e674 100755
--- a/platform_tools/android/bin/android_setup.sh
+++ b/platform_tools/android/bin/android_setup.sh
@@ -23,6 +23,8 @@ while (( "$#" )); do
shift
elif [[ "$1" == "--release" ]]; then
BUILDTYPE=Release
+ elif [[ "$1" == "--clang" ]]; then
+ USE_CLANG="true"
else
APP_ARGS=("${APP_ARGS[@]}" "${1}")
fi

Powered by Google App Engine
This is Rietveld 408576698