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

Side by Side Diff: third_party/qcms/qcms.gyp

Issue 10947012: Turn off SSE2 when building for ARM or MIPS. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Force disable_sse2 for ARM or MIPS. Created 8 years, 3 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 unified diff | Download patch
« build/common.gypi ('K') | « build/common.gypi ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 { 5 {
6 'variables': { 6 'variables': {
7 'conditions': [ 7 'conditions': [
8 # For ARM, turn off SSE2.
9 # For x86, turn off SSE2 for non-CrOS *nix Chrome builds. 8 # For x86, turn off SSE2 for non-CrOS *nix Chrome builds.
10 ['disable_sse2==1 or target_arch=="arm" or \ 9 ['disable_sse2==1 or \
11 (branding=="Chrome" and target_arch=="ia32" and \ 10 (branding=="Chrome" and target_arch=="ia32" and \
12 os_posix==1 and OS!="mac" and chromeos==0)', { 11 os_posix==1 and OS!="mac" and chromeos==0)', {
13 'qcms_use_sse': 0, 12 'qcms_use_sse': 0,
14 }, { 13 }, {
15 'qcms_use_sse': 1, 14 'qcms_use_sse': 1,
16 }], 15 }],
17 ], 16 ],
18 }, 17 },
19 'targets': [ 18 'targets': [
20 { 19 {
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
55 ], 54 ],
56 }, 55 },
57 ], 56 ],
58 } 57 }
59 58
60 # Local Variables: 59 # Local Variables:
61 # tab-width:2 60 # tab-width:2
62 # indent-tabs-mode:nil 61 # indent-tabs-mode:nil
63 # End: 62 # End:
64 # vim: set expandtab tabstop=2 shiftwidth=2: 63 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW
« build/common.gypi ('K') | « build/common.gypi ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698