| 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 'target_defaults': { | 6 'target_defaults': { |
| 7 'configurations': { | 7 'configurations': { |
| 8 'Dart_Debug': { | 8 'Dart_Debug': { |
| 9 'msvs_settings': { | 9 'msvs_settings': { |
| 10 'VCCLCompilerTool': { | 10 'VCCLCompilerTool': { |
| (...skipping 27 matching lines...) Expand all Loading... |
| 38 'VCLinkerTool': { | 38 'VCLinkerTool': { |
| 39 'LinkIncremental': '1', | 39 'LinkIncremental': '1', |
| 40 'GenerateDebugInformation': 'true', | 40 'GenerateDebugInformation': 'true', |
| 41 'OptimizeReferences': '2', | 41 'OptimizeReferences': '2', |
| 42 'EnableCOMDATFolding': '2', | 42 'EnableCOMDATFolding': '2', |
| 43 'StackReserveSize': '2097152', | 43 'StackReserveSize': '2097152', |
| 44 }, | 44 }, |
| 45 }, | 45 }, |
| 46 }, | 46 }, |
| 47 }, | 47 }, |
| 48 'defines': [ |
| 49 '_HAS_EXCEPTIONS=0', # disable C++ exceptions use in C++ std. libs. |
| 50 ], |
| 48 }, | 51 }, |
| 49 } | 52 } |
| OLD | NEW |