| 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': { |
| 11 'Optimization': '0', | 11 'Optimization': '2', |
| 12 'DebugInformationFormat': '3', | 12 'DebugInformationFormat': '3', |
| 13 'ExceptionHandling': '0', | 13 'ExceptionHandling': '0', |
| 14 'RuntimeTypeInfo': 'false', | 14 'RuntimeTypeInfo': 'false', |
| 15 'OmitFramePointers': 'false', |
| 15 }, | 16 }, |
| 16 'VCLinkerTool': { | 17 'VCLinkerTool': { |
| 17 'LinkIncremental': '2', | 18 'LinkIncremental': '2', |
| 18 'GenerateDebugInformation': 'true', | 19 'GenerateDebugInformation': 'true', |
| 19 'StackReserveSize': '2097152', | 20 'StackReserveSize': '2097152', |
| 20 }, | 21 }, |
| 21 }, | 22 }, |
| 22 }, | 23 }, |
| 23 | 24 |
| 24 'Dart_Release': { | 25 'Dart_Release': { |
| (...skipping 12 matching lines...) Expand all Loading... |
| 37 'LinkIncremental': '1', | 38 'LinkIncremental': '1', |
| 38 'OptimizeReferences': '2', | 39 'OptimizeReferences': '2', |
| 39 'EnableCOMDATFolding': '2', | 40 'EnableCOMDATFolding': '2', |
| 40 'StackReserveSize': '2097152', | 41 'StackReserveSize': '2097152', |
| 41 }, | 42 }, |
| 42 }, | 43 }, |
| 43 }, | 44 }, |
| 44 }, | 45 }, |
| 45 }, | 46 }, |
| 46 } | 47 } |
| OLD | NEW |