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

Side by Side Diff: tools/gyp/configurations_msvs.gypi

Issue 10830212: Revert 10366, this breaks the windows builders (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years, 4 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 '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': {
11 'Dart_Debug': { 11 'Dart_Debug': {
12 'msvs_settings': { 12 'msvs_settings': {
13 'VCCLCompilerTool': { 13 'VCCLCompilerTool': {
14 'Optimization': '<(dart_debug_optimization_level)', 14 'Optimization': '<(dart_debug_optimization_level)',
15 'BasicRuntimeChecks': '0', # disable /RTC1 when compiling /O2 15 'BasicRuntimeChecks': '0', # disable /RTC1 when compiling /O2
16 'DebugInformationFormat': '3', 16 'DebugInformationFormat': '3',
17 'ExceptionHandling': '0', 17 'ExceptionHandling': '0',
18 'RuntimeTypeInfo': 'false', 18 'RuntimeTypeInfo': 'false',
19 'OmitFramePointers': 'false', 19 'OmitFramePointers': 'false',
20 'RuntimeLibrary': '3', # MultiThreadedDebugDLL
21 }, 20 },
22 'VCLinkerTool': { 21 'VCLinkerTool': {
23 'LinkIncremental': '2', 22 'LinkIncremental': '2',
24 'GenerateDebugInformation': 'true', 23 'GenerateDebugInformation': 'true',
25 'StackReserveSize': '2097152', 24 'StackReserveSize': '2097152',
26 }, 25 },
27 }, 26 },
28 'defines': [ '_DEBUG' ],
29 }, 27 },
30 28
31 'Dart_Release': { 29 'Dart_Release': {
32 'msvs_settings': { 30 'msvs_settings': {
33 'VCCLCompilerTool': { 31 'VCCLCompilerTool': {
34 'Optimization': '2', 32 'Optimization': '2',
35 'InlineFunctionExpansion': '2', 33 'InlineFunctionExpansion': '2',
36 'EnableIntrinsicFunctions': 'true', 34 'EnableIntrinsicFunctions': 'true',
37 'FavorSizeOrSpeed': '0', 35 'FavorSizeOrSpeed': '0',
38 'ExceptionHandling': '0', 36 'ExceptionHandling': '0',
39 'RuntimeTypeInfo': 'false', 37 'RuntimeTypeInfo': 'false',
40 'OmitFramePointers': 'false', 38 'OmitFramePointers': 'false',
41 'StringPooling': 'true', 39 'StringPooling': 'true',
42 'RuntimeLibrary': '2', # MultiThreadedDll
43 }, 40 },
44 'VCLinkerTool': { 41 'VCLinkerTool': {
45 'LinkIncremental': '1', 42 'LinkIncremental': '1',
46 'GenerateDebugInformation': 'true', 43 'GenerateDebugInformation': 'true',
47 'OptimizeReferences': '2', 44 'OptimizeReferences': '2',
48 'EnableCOMDATFolding': '2', 45 'EnableCOMDATFolding': '2',
49 'StackReserveSize': '2097152', 46 'StackReserveSize': '2097152',
50 }, 47 },
51 }, 48 },
52 }, 49 },
53 }, 50 },
54 'defines': [ 51 'defines': [
55 '_HAS_EXCEPTIONS=0', # disable C++ exceptions use in C++ std. libs. 52 '_HAS_EXCEPTIONS=0', # disable C++ exceptions use in C++ std. libs.
56 ], 53 ],
57 }, 54 },
58 } 55 }
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