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

Unified Diff: build/common.gypi

Issue 10388067: Fix the content_shell.apk in android x86 target build bug (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Fix the content_shell.apk in android x86 target build bug Created 8 years, 7 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 | content/content_shell.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/common.gypi
diff --git a/build/common.gypi b/build/common.gypi
index 47e937d214532028a7c5fed7531dc84f2f908214..1621a0801425eb494f3282c5550e6d85d77470a2 100644
--- a/build/common.gypi
+++ b/build/common.gypi
@@ -827,6 +827,13 @@
'conditions': [
['target_arch == "ia32"', {
'target_arch': 'x86',
+ 'android_app_abi%': 'x86',
+ }],
+ ['target_arch=="arm" and armv7==0', {
+ 'android_app_abi%': 'armeabi',
+ }],
+ ['target_arch=="arm" and armv7==1', {
+ 'android_app_abi%': 'armeabi-v7a',
}],
],
@@ -837,11 +844,13 @@
'android_ndk_root%': '<(android_ndk_root)',
'android_ndk_sysroot': '<(android_ndk_root)/platforms/android-9/arch-<(target_arch)',
'android_build_type%': '<(android_build_type)',
+ 'android_app_abi%': '<(android_app_abi)',
},
'android_ndk_root%': '<(android_ndk_root)',
'android_ndk_sysroot': '<(android_ndk_sysroot)',
'android_ndk_include': '<(android_ndk_sysroot)/usr/include',
'android_ndk_lib': '<(android_ndk_sysroot)/usr/lib',
+ 'android_app_abi%': '<(android_app_abi)',
# Uses Android's crash report system
'linux_breakpad%': 0,
« no previous file with comments | « no previous file | content/content_shell.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698