| 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 'msvs_configuration_attributes': { |
| 14 'OutputDirectory': '<(DEPTH)\\out\\$(ConfigurationName)', |
| 15 'IntermediateDirectory': '$(OutDir)\\obj\\$(ProjectName)', |
| 16 'CharacterSet': '1', |
| 17 }, |
| 13 'defines': [ | 18 'defines': [ |
| 14 '_HAS_EXCEPTIONS=0', # disable C++ exceptions use in C++ std. libs. | 19 '_HAS_EXCEPTIONS=0', # disable C++ exceptions use in C++ std. libs. |
| 15 ], | 20 ], |
| 16 }, | 21 }, |
| 17 'Dart_Win_ia32_Base': { | 22 'Dart_Win_ia32_Base': { |
| 18 'abstract': 1, | 23 'abstract': 1, |
| 19 }, | 24 }, |
| 20 'Dart_Win_x64_Base': { | 25 'Dart_Win_x64_Base': { |
| 21 'abstract': 1, | 26 'abstract': 1, |
| 22 'msvs_configuration_platform': 'x64', | 27 'msvs_configuration_platform': 'x64', |
| (...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 131 }, | 136 }, |
| 132 }, | 137 }, |
| 133 # C4351 warns MSVC follows the C++ specification regarding array | 138 # C4351 warns MSVC follows the C++ specification regarding array |
| 134 # initialization in member initializers. Code that expects the | 139 # initialization in member initializers. Code that expects the |
| 135 # specified behavior should silence this warning. | 140 # specified behavior should silence this warning. |
| 136 'msvs_disabled_warnings': [4351], | 141 'msvs_disabled_warnings': [4351], |
| 137 }, | 142 }, |
| 138 }, | 143 }, |
| 139 }, | 144 }, |
| 140 } | 145 } |
| OLD | NEW |