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': { |
11 'Dart_Win_Base': { | 11 'Dart_Win_Base': { |
12 'abstract': 1, | 12 'abstract': 1, |
13 'defines': [ | 13 'defines': [ |
14 '_HAS_EXCEPTIONS=0', # disable C++ exceptions use in C++ std. libs. | 14 '_HAS_EXCEPTIONS=0', # disable C++ exceptions use in C++ std. libs. |
15 ], | 15 ], |
16 }, | 16 }, |
17 'Dart_Win_ia32_Base': { | 17 'Dart_Win_ia32_Base': { |
18 'abstract': 1, | 18 'abstract': 1, |
19 }, | 19 }, |
20 'Dart_Win_x64_Base': { | 20 'Dart_Win_x64_Base': { |
21 'abstract': 1, | 21 'abstract': 1, |
22 }, | 22 }, |
23 'Dart_Win_simarm_Base': { | 23 'Dart_Win_simarm_Base': { |
24 'abstract': 1, | 24 'abstract': 1, |
25 }, | 25 }, |
| 26 'Dart_Win_simarm64_Base': { |
| 27 'abstract': 1, |
| 28 }, |
26 'Dart_Win_simmips_Base': { | 29 'Dart_Win_simmips_Base': { |
27 'abstract': 1, | 30 'abstract': 1, |
28 }, | 31 }, |
29 'Dart_Win_Debug': { | 32 'Dart_Win_Debug': { |
30 'abstract': 1, | 33 'abstract': 1, |
31 'msvs_settings': { | 34 'msvs_settings': { |
32 'VCCLCompilerTool': { | 35 'VCCLCompilerTool': { |
33 'Optimization': '<(dart_debug_optimization_level)', | 36 'Optimization': '<(dart_debug_optimization_level)', |
34 'BasicRuntimeChecks': '0', # disable /RTC1 when compiling /O2 | 37 'BasicRuntimeChecks': '0', # disable /RTC1 when compiling /O2 |
35 'DebugInformationFormat': '3', | 38 'DebugInformationFormat': '3', |
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
83 }, | 86 }, |
84 }, | 87 }, |
85 # C4351 warns MSVC follows the C++ specification regarding array | 88 # C4351 warns MSVC follows the C++ specification regarding array |
86 # initialization in member initializers. Code that expects the | 89 # initialization in member initializers. Code that expects the |
87 # specified behavior should silence this warning. | 90 # specified behavior should silence this warning. |
88 'msvs_disabled_warnings': [4351], | 91 'msvs_disabled_warnings': [4351], |
89 }, | 92 }, |
90 }, | 93 }, |
91 }, | 94 }, |
92 } | 95 } |
OLD | NEW |