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

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

Issue 1895223003: Fix GYP configurations on Mac and Windows after DBC patch. (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Created 4 years, 8 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
« no previous file with comments | « no previous file | tools/gyp/configurations_xcode.gypi » ('j') | 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 18 matching lines...) Expand all
29 }, 29 },
30 'Dart_Win_simarmv5te_Base': { 30 'Dart_Win_simarmv5te_Base': {
31 'abstract': 1, 31 'abstract': 1,
32 }, 32 },
33 'Dart_Win_simarm64_Base': { 33 'Dart_Win_simarm64_Base': {
34 'abstract': 1, 34 'abstract': 1,
35 }, 35 },
36 'Dart_Win_simmips_Base': { 36 'Dart_Win_simmips_Base': {
37 'abstract': 1, 37 'abstract': 1,
38 }, 38 },
39 'Dart_Win_simdbc_Base': {
40 'abstract': 1,
41 },
39 'Dart_Win_Debug': { 42 'Dart_Win_Debug': {
40 'abstract': 1, 43 'abstract': 1,
41 'msvs_settings': { 44 'msvs_settings': {
42 'VCCLCompilerTool': { 45 'VCCLCompilerTool': {
43 'Optimization': '<(dart_debug_optimization_level)', 46 'Optimization': '<(dart_debug_optimization_level)',
44 'BasicRuntimeChecks': '0', # disable /RTC1 when compiling /O2 47 'BasicRuntimeChecks': '0', # disable /RTC1 when compiling /O2
45 'DebugInformationFormat': '3', 48 'DebugInformationFormat': '3',
46 'ExceptionHandling': '0', 49 'ExceptionHandling': '0',
47 'RuntimeTypeInfo': 'false', 50 'RuntimeTypeInfo': 'false',
48 'RuntimeLibrary': '1', # /MTd - Multi-threaded, static (debug) 51 'RuntimeLibrary': '1', # /MTd - Multi-threaded, static (debug)
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after
125 }, 128 },
126 }, 129 },
127 # C4351 warns MSVC follows the C++ specification regarding array 130 # C4351 warns MSVC follows the C++ specification regarding array
128 # initialization in member initializers. Code that expects the 131 # initialization in member initializers. Code that expects the
129 # specified behavior should silence this warning. 132 # specified behavior should silence this warning.
130 'msvs_disabled_warnings': [4351], 133 'msvs_disabled_warnings': [4351],
131 }, 134 },
132 }, 135 },
133 }, 136 },
134 } 137 }
OLDNEW
« no previous file with comments | « no previous file | tools/gyp/configurations_xcode.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698