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

Unified Diff: android_webview/tools/gyp_webview

Issue 171903002: android envsetup: Stop honoring --target-arch parameter. (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/buildbot/bb_run_bot.py » ('j') | tools/cr/cr/base/android.py » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: android_webview/tools/gyp_webview
diff --git a/android_webview/tools/gyp_webview b/android_webview/tools/gyp_webview
index 880d8450c1129608dbe2409058cdabf580203521..e28a6e3b5443ba579e531009a7ed82dd673f74dc 100755
--- a/android_webview/tools/gyp_webview
+++ b/android_webview/tools/gyp_webview
@@ -21,26 +21,26 @@ FLAGS="-f android -Gdefault_target=All -Glimit_to_target_all=1 "\
"${CHROME_SRC}/android_webview/all_webview.gyp"
if [ "$PLATFORM" == "linux-arm" -o "$PLATFORM" == "all" ]; then
- ( . $CHROME_SRC/build/android/envsetup.sh --target-arch=arm \
- && android_gyp --suffix .linux-arm ${FLAGS} -Dhost_os=linux )
+ ( . $CHROME_SRC/build/android/envsetup.sh \
+ && android_gyp --suffix .linux-arm ${FLAGS} -Dtarget_arch=arm -Dhost_os=linux )
fi
if [ "$PLATFORM" == "linux-x86" -o "$PLATFORM" == "all" ]; then
- ( . $CHROME_SRC/build/android/envsetup.sh --target-arch=x86 \
- && android_gyp --suffix .linux-x86 ${FLAGS} -Dhost_os=linux )
+ ( . $CHROME_SRC/build/android/envsetup.sh \
+ && android_gyp --suffix .linux-x86 ${FLAGS} -Dtarget_arch=ia32 -Dhost_os=linux )
fi
if [ "$PLATFORM" == "linux-mips" -o "$PLATFORM" == "all" ]; then
- ( . $CHROME_SRC/build/android/envsetup.sh --target-arch=mips \
- && android_gyp --suffix .linux-mips ${FLAGS} -Dhost_os=linux )
+ ( . $CHROME_SRC/build/android/envsetup.sh \
+ && android_gyp --suffix .linux-mips ${FLAGS} -Dtarget_arch=mipsel -Dhost_os=linux )
fi
if [ "$PLATFORM" == "darwin-arm" -o "$PLATFORM" == "all" ]; then
( . $CHROME_SRC/build/android/envsetup.sh --target-arch=arm \
- && android_gyp --suffix .darwin-arm ${FLAGS} -Dhost_os=mac )
+ && android_gyp --suffix .darwin-arm ${FLAGS} -Dtarget_arch=arm -Dhost_os=mac )
fi
if [ "$PLATFORM" == "darwin-x86" -o "$PLATFORM" == "all" ]; then
- ( . $CHROME_SRC/build/android/envsetup.sh --target-arch=x86 \
- && android_gyp --suffix .darwin-x86 ${FLAGS} -Dhost_os=mac )
+ ( . $CHROME_SRC/build/android/envsetup.sh \
+ && android_gyp --suffix .darwin-x86 ${FLAGS} -Dtarget_arch=ia32 -Dhost_os=mac )
fi
if [ "$PLATFORM" == "darwin-mips" -o "$PLATFORM" == "all" ]; then
- ( . $CHROME_SRC/build/android/envsetup.sh --target-arch=mips \
- && android_gyp --suffix .darwin-mips ${FLAGS} -Dhost_os=mac )
+ ( . $CHROME_SRC/build/android/envsetup.sh \
+ && android_gyp --suffix .darwin-mips ${FLAGS} -Dtarget_arch=mipsel -Dhost_os=mac )
fi
« no previous file with comments | « no previous file | build/android/buildbot/bb_run_bot.py » ('j') | tools/cr/cr/base/android.py » ('J')

Powered by Google App Engine
This is Rietveld 408576698