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

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

Issue 14727011: Adding library dependencies on windows (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 7 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': {
(...skipping 28 matching lines...) Expand all
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 }
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