OLD | NEW |
1 # Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file | 1 # Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file |
2 # for details. All rights reserved. Use of this source code is governed by a | 2 # for details. All rights reserved. Use of this source code is governed by a |
3 # BSD-style license that can be found in the LICENSE file. | 3 # BSD-style license that can be found in the LICENSE file. |
4 | 4 |
5 { | 5 { |
6 'variables': { | 6 'variables': { |
7 'dart_debug_optimization_level%': '2', | 7 'dart_debug_optimization_level%': '2', |
8 }, | 8 }, |
9 'target_defaults': { | 9 'target_defaults': { |
10 'configurations': { | 10 'configurations': { |
(...skipping 21 matching lines...) Expand all Loading... |
32 }, | 32 }, |
33 'Dart_Win_simarm64_Base': { | 33 'Dart_Win_simarm64_Base': { |
34 'abstract': 1, | 34 'abstract': 1, |
35 }, | 35 }, |
36 'Dart_Win_simmips_Base': { | 36 'Dart_Win_simmips_Base': { |
37 'abstract': 1, | 37 'abstract': 1, |
38 }, | 38 }, |
39 'Dart_Win_simdbc_Base': { | 39 'Dart_Win_simdbc_Base': { |
40 'abstract': 1, | 40 'abstract': 1, |
41 }, | 41 }, |
| 42 'Dart_Win_simdbc64_Base': { |
| 43 'abstract': 1, |
| 44 }, |
42 'Dart_Win_Debug': { | 45 'Dart_Win_Debug': { |
43 'abstract': 1, | 46 'abstract': 1, |
44 'msvs_settings': { | 47 'msvs_settings': { |
45 'VCCLCompilerTool': { | 48 'VCCLCompilerTool': { |
46 'Optimization': '<(dart_debug_optimization_level)', | 49 'Optimization': '<(dart_debug_optimization_level)', |
47 'BasicRuntimeChecks': '0', # disable /RTC1 when compiling /O2 | 50 'BasicRuntimeChecks': '0', # disable /RTC1 when compiling /O2 |
48 'DebugInformationFormat': '3', | 51 'DebugInformationFormat': '3', |
49 'ExceptionHandling': '0', | 52 'ExceptionHandling': '0', |
50 'RuntimeTypeInfo': 'false', | 53 'RuntimeTypeInfo': 'false', |
51 'RuntimeLibrary': '1', # /MTd - Multi-threaded, static (debug) | 54 'RuntimeLibrary': '1', # /MTd - Multi-threaded, static (debug) |
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
128 }, | 131 }, |
129 }, | 132 }, |
130 # C4351 warns MSVC follows the C++ specification regarding array | 133 # C4351 warns MSVC follows the C++ specification regarding array |
131 # initialization in member initializers. Code that expects the | 134 # initialization in member initializers. Code that expects the |
132 # specified behavior should silence this warning. | 135 # specified behavior should silence this warning. |
133 'msvs_disabled_warnings': [4351], | 136 'msvs_disabled_warnings': [4351], |
134 }, | 137 }, |
135 }, | 138 }, |
136 }, | 139 }, |
137 } | 140 } |
OLD | NEW |