diff options
author | sdefresne <sdefresne@chromium.org> | 2015-03-31 08:34:44 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2015-03-31 15:35:38 +0000 |
commit | 4ef3ab4e104014a35ac36903368b0111c52a1389 (patch) | |
tree | d23b74a3abb1ec3a7aa777e0a8f112fe34b5b106 | |
parent | c0cafda579443580347e105f7ea981b2502435c8 (diff) | |
download | chromium_src-4ef3ab4e104014a35ac36903368b0111c52a1389.zip chromium_src-4ef3ab4e104014a35ac36903368b0111c52a1389.tar.gz chromium_src-4ef3ab4e104014a35ac36903368b0111c52a1389.tar.bz2 |
Build 64-bit binaries by default when compiling for iOS
All the bots force the value of target_subarch so the default value is only
used by developpers. Since the vast majority of the devices used on a daily
basis by developpers are 64-bit devices swap the default to 64-bit.
BUG=None
Review URL: https://codereview.chromium.org/1021513002
Cr-Commit-Position: refs/heads/master@{#323039}
-rw-r--r-- | build/common.gypi | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/build/common.gypi b/build/common.gypi index 04eb0bf..fc755d6 100644 --- a/build/common.gypi +++ b/build/common.gypi @@ -246,14 +246,8 @@ # Set the default "target_subarch" on iOS. Valid values are "arm32", # "arm64" and "both" (meaning a fat binary). - # - # TODO(sdefresne): change the default from "arm32" to "both" for - # "target_subarch" once http://crbug.com/339477 is fixed. - # - # TODO(sdefresne): set the "target_arch" to "arm" once compilation - # of skia has been fixed for simulator. http://crbug.com/342377 ['OS=="ios"', { - 'target_subarch%': 'arm32', + 'target_subarch%': 'arm64', }], # Set arch variants for MIPS platforms. |