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 18 matching lines...) Expand all Loading... |
29 }, | 29 }, |
30 'Dart_Win_simarmv5te_Base': { | 30 'Dart_Win_simarmv5te_Base': { |
31 'abstract': 1, | 31 'abstract': 1, |
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': { |
| 40 'abstract': 1, |
| 41 }, |
39 'Dart_Win_Debug': { | 42 'Dart_Win_Debug': { |
40 'abstract': 1, | 43 'abstract': 1, |
41 'msvs_settings': { | 44 'msvs_settings': { |
42 'VCCLCompilerTool': { | 45 'VCCLCompilerTool': { |
43 'Optimization': '<(dart_debug_optimization_level)', | 46 'Optimization': '<(dart_debug_optimization_level)', |
44 'BasicRuntimeChecks': '0', # disable /RTC1 when compiling /O2 | 47 'BasicRuntimeChecks': '0', # disable /RTC1 when compiling /O2 |
45 'DebugInformationFormat': '3', | 48 'DebugInformationFormat': '3', |
46 'ExceptionHandling': '0', | 49 'ExceptionHandling': '0', |
47 'RuntimeTypeInfo': 'false', | 50 'RuntimeTypeInfo': 'false', |
48 'RuntimeLibrary': '1', # /MTd - Multi-threaded, static (debug) | 51 'RuntimeLibrary': '1', # /MTd - Multi-threaded, static (debug) |
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
125 }, | 128 }, |
126 }, | 129 }, |
127 # C4351 warns MSVC follows the C++ specification regarding array | 130 # C4351 warns MSVC follows the C++ specification regarding array |
128 # initialization in member initializers. Code that expects the | 131 # initialization in member initializers. Code that expects the |
129 # specified behavior should silence this warning. | 132 # specified behavior should silence this warning. |
130 'msvs_disabled_warnings': [4351], | 133 'msvs_disabled_warnings': [4351], |
131 }, | 134 }, |
132 }, | 135 }, |
133 }, | 136 }, |
134 } | 137 } |
OLD | NEW |