OLD | NEW |
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 Loading... |
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: |
OLD | NEW |