| 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 28 matching lines...) Expand all Loading... |
| 39 'OmitFramePointers': 'false', | 39 'OmitFramePointers': 'false', |
| 40 'StringPooling': 'true', | 40 'StringPooling': 'true', |
| 41 'RuntimeLibrary': '0', # /MT - Multi-threaded, static | 41 'RuntimeLibrary': '0', # /MT - Multi-threaded, static |
| 42 }, | 42 }, |
| 43 'VCLinkerTool': { | 43 'VCLinkerTool': { |
| 44 'LinkIncremental': '1', | 44 'LinkIncremental': '1', |
| 45 'GenerateDebugInformation': 'true', | 45 'GenerateDebugInformation': 'true', |
| 46 'OptimizeReferences': '2', | 46 'OptimizeReferences': '2', |
| 47 'EnableCOMDATFolding': '2', | 47 'EnableCOMDATFolding': '2', |
| 48 'StackReserveSize': '2097152', | 48 'StackReserveSize': '2097152', |
| 49 'AdditionalDependencies': [ |
| 50 'advapi32.lib', |
| 51 'shell32.lib', |
| 52 ] |
| 49 }, | 53 }, |
| 50 }, | 54 }, |
| 51 }, | 55 }, |
| 52 }, | 56 }, |
| 53 'defines': [ | 57 'defines': [ |
| 54 '_HAS_EXCEPTIONS=0', # disable C++ exceptions use in C++ std. libs. | 58 '_HAS_EXCEPTIONS=0', # disable C++ exceptions use in C++ std. libs. |
| 55 ], | 59 ], |
| 56 }, | 60 }, |
| 57 } | 61 } |
| OLD | NEW |