From c6c691d6ddc6ec9ae8f23e0e6ca978d13c845e1f Mon Sep 17 00:00:00 2001 From: "torne@chromium.org" Date: Tue, 11 Jun 2013 14:56:15 +0000 Subject: [PATCH] Android WebView: generate makefiles for MIPS. Enable generation of makefiles for target_arch=mips when building the WebView inside Android. BUG= NOTRY=true Review URL: https://chromiumcodereview.appspot.com/16661003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@205548 0039d316-1c4b-4281-b951-d872f2087c98 --- android_webview/tools/gyp_webview | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/android_webview/tools/gyp_webview b/android_webview/tools/gyp_webview index 5f55f093daac..0dd7b5bb638e 100755 --- a/android_webview/tools/gyp_webview +++ b/android_webview/tools/gyp_webview @@ -25,6 +25,10 @@ if [ "$PLATFORM" == "linux-x86" -o "$PLATFORM" == "all" ]; then ( . build/android/envsetup.sh --target-arch=x86 --host-os=linux && \ android_gyp --suffix .linux-x86 ) fi +if [ "$PLATFORM" == "linux-mips" -o "$PLATFORM" == "all" ]; then + ( . build/android/envsetup.sh --target-arch=mips --host-os=linux && \ + android_gyp --suffix .linux-mips ) +fi if [ "$PLATFORM" == "darwin-arm" -o "$PLATFORM" == "all" ]; then ( . build/android/envsetup.sh --target-arch=arm --host-os=mac && \ android_gyp --suffix .darwin-arm ) @@ -33,3 +37,7 @@ if [ "$PLATFORM" == "darwin-x86" -o "$PLATFORM" == "all" ]; then ( . build/android/envsetup.sh --target-arch=x86 --host-os=mac && \ android_gyp --suffix .darwin-x86 ) fi +if [ "$PLATFORM" == "darwin-mips" -o "$PLATFORM" == "all" ]; then + ( . build/android/envsetup.sh --target-arch=mips --host-os=mac && \ + android_gyp --suffix .darwin-mips ) +fi -- 2.11.4.GIT