mirror of
https://github.com/dart-lang/sdk
synced 2024-11-02 10:28:02 +00:00
6b6b28e065
git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@18 260f80e4-7a28-3924-810f-c04153c831b5
46 lines
1.3 KiB
Python
46 lines
1.3 KiB
Python
# Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
|
|
# for details. All rights reserved. Use of this source code is governed by a
|
|
# BSD-style license that can be found in the LICENSE file.
|
|
|
|
{
|
|
'target_defaults': {
|
|
'configurations': {
|
|
'Dart_Debug': {
|
|
'msvs_settings': {
|
|
'VCCLCompilerTool': {
|
|
'Optimization': '0',
|
|
'DebugInformationFormat': '3',
|
|
'ExceptionHandling': '0',
|
|
'RuntimeTypeInfo': 'false',
|
|
},
|
|
'VCLinkerTool': {
|
|
'LinkIncremental': '2',
|
|
'GenerateDebugInformation': 'true',
|
|
'StackReserveSize': '2097152',
|
|
},
|
|
},
|
|
},
|
|
|
|
'Dart_Release': {
|
|
'msvs_settings': {
|
|
'VCCLCompilerTool': {
|
|
'Optimization': '2',
|
|
'InlineFunctionExpansion': '2',
|
|
'EnableIntrinsicFunctions': 'true',
|
|
'FavorSizeOrSpeed': '0',
|
|
'ExceptionHandling': '0',
|
|
'RuntimeTypeInfo': 'false',
|
|
'OmitFramePointers': 'true',
|
|
'StringPooling': 'true',
|
|
},
|
|
'VCLinkerTool': {
|
|
'LinkIncremental': '1',
|
|
'OptimizeReferences': '2',
|
|
'EnableCOMDATFolding': '2',
|
|
'StackReserveSize': '2097152',
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
}
|