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

Unified Diff: android_webview/tools/gyp_webview

Issue 251813002: [Android] Add arm64 target to gyp_webview (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 8 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 | no next file » | no next file with comments »
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 4f7c2d88650795a92ffb9288e3e2a8ef497f8821..96601475dff20e3a7df5e64a5362f9b1e807547a 100755
--- a/android_webview/tools/gyp_webview
+++ b/android_webview/tools/gyp_webview
@@ -65,6 +65,9 @@ for host_os in linux mac; do
if [ "$PLATFORM" == "${host_platform}-arm" -o "$PLATFORM" == "all" ]; then
${GYP} --suffix .${host_platform}-arm ${EFLAGS} -Dtarget_arch=arm
fi
+ if [ "$PLATFORM" == "${host_platform}-arm64" -o "$PLATFORM" == "all" ]; then
+ ${GYP} --suffix .${host_platform}-arm64 ${EFLAGS} -Dtarget_arch=arm64
+ fi
if [ "$PLATFORM" == "${host_platform}-x86" -o "$PLATFORM" == "all" ]; then
${GYP} --suffix .${host_platform}-x86 ${EFLAGS} -Dtarget_arch=ia32
fi
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698