diff options
author | jschuh@chromium.org <jschuh@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-03-02 22:40:02 +0000 |
---|---|---|
committer | jschuh@chromium.org <jschuh@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-03-02 22:40:02 +0000 |
commit | af7abfae370ada09a26ce1a56fbbd27c1462c9a8 (patch) | |
tree | 17892f07b5e368fa1e515141959779999f2f79de /third_party | |
parent | ed00e08dcbadd6feb91a3cf8f89c7f9d9e7b92bc (diff) | |
download | chromium_src-af7abfae370ada09a26ce1a56fbbd27c1462c9a8.zip chromium_src-af7abfae370ada09a26ce1a56fbbd27c1462c9a8.tar.gz chromium_src-af7abfae370ada09a26ce1a56fbbd27c1462c9a8.tar.bz2 |
Disable MMX support so QCMS can build on Win64
BUG=179657
TBR=scottmg@chromium.org
R=scottmg@chromium.org
Review URL: https://codereview.chromium.org/12393030
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@185783 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'third_party')
-rw-r--r-- | third_party/qcms/qcms.gyp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/third_party/qcms/qcms.gyp b/third_party/qcms/qcms.gyp index 191e55d..b3f8b74 100644 --- a/third_party/qcms/qcms.gyp +++ b/third_party/qcms/qcms.gyp @@ -33,11 +33,11 @@ 'variables': { 'conditions': [ # For x86, turn off SSE2 for non-CrOS *nix Chrome builds. - # Disable MMX on x64 for MSVC prior to 2012 (eg. 2012e is enabled). + # TODO(jschuh): Get MMX enabled on Win64. crbug.com/179657 ['disable_sse2==1 or \ (branding=="Chrome" and target_arch=="ia32" and \ os_posix==1 and OS!="mac" and chromeos==0) or \ - (OS=="win" and target_arch=="x64" and MSVS_VERSION<"2012")', { + (OS=="win" and target_arch=="x64")', { 'qcms_use_sse': 0, }, { 'qcms_use_sse': 1, |