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

Unified Diff: build/android/envsetup.sh

Issue 173003003: android envsetup: Make passing --target-arch an error. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: ! Created 6 years, 10 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 | build/android/envsetup_functions.sh » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/android/envsetup.sh
diff --git a/build/android/envsetup.sh b/build/android/envsetup.sh
index 087b5608c5bc7fafe0f0b327d791ba78ccb842e9..e8a373c67b74cf235f9aad014608ff85a849a23e 100755
--- a/build/android/envsetup.sh
+++ b/build/android/envsetup.sh
@@ -22,7 +22,9 @@ SCRIPT_DIR="$(dirname "${BASH_SOURCE:-$0}")"
export ANDROID_SDK_BUILD=1 # Default to SDK build.
-process_options "$@"
+if ! process_options "$@" ; then
+ return 1
+fi
# When building WebView as part of Android we can't use the SDK. Other builds
# default to using the SDK.
« no previous file with comments | « no previous file | build/android/envsetup_functions.sh » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698