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

Unified Diff: build/android/envsetup.sh

Issue 11260008: Pass target architecture to build/android/envsetup.sh (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: changed the comment in the code Created 8 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
« 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 90835840d681e8fe5ede08f107692aea6c348ae8..390f07cebbb7ebf29cc005bb5eb92044c6371c54 100755
--- a/build/android/envsetup.sh
+++ b/build/android/envsetup.sh
@@ -59,6 +59,10 @@ export ANDROID_SDK_VERSION=16
. "$(dirname $BASH_SOURCE)"/envsetup_functions.sh
if [[ "${ANDROID_SDK_BUILD}" -eq 1 ]]; then
+ process_options "$@"
+ if [[ -z "${TARGET_ARCH}" ]]; then
+ return 1
+ fi
sdk_build_init
# Sets up environment for building Chromium for Android with source. Expects
# android environment setup and lunch.
« 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