Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(704)

Side by Side Diff: gyp/configurations_msvs.gypi

Issue 9706089: preserve frame pointers even in release build. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/tools/
Patch Set: Created 8 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 14 matching lines...) Expand all
25 25
26 'Dart_Release': { 26 'Dart_Release': {
27 'msvs_settings': { 27 'msvs_settings': {
28 'VCCLCompilerTool': { 28 'VCCLCompilerTool': {
29 'Optimization': '2', 29 'Optimization': '2',
30 'InlineFunctionExpansion': '2', 30 'InlineFunctionExpansion': '2',
31 'EnableIntrinsicFunctions': 'true', 31 'EnableIntrinsicFunctions': 'true',
32 'FavorSizeOrSpeed': '0', 32 'FavorSizeOrSpeed': '0',
33 'ExceptionHandling': '0', 33 'ExceptionHandling': '0',
34 'RuntimeTypeInfo': 'false', 34 'RuntimeTypeInfo': 'false',
35 'OmitFramePointers': 'true', 35 'OmitFramePointers': 'false',
36 'StringPooling': 'true', 36 'StringPooling': 'true',
37 }, 37 },
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 }, 48 },
49 } 49 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698