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

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

Issue 1904153003: DBC: Adds simdbc64 target, adds arm64 arithmetic overflow logic (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Fix stack overflow area size 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
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 21 matching lines...) Expand all
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': { 39 'Dart_Win_simdbc_Base': {
40 'abstract': 1, 40 'abstract': 1,
41 }, 41 },
42 'Dart_Win_simdbc64_Base': {
43 'abstract': 1,
44 },
42 'Dart_Win_Debug': { 45 'Dart_Win_Debug': {
43 'abstract': 1, 46 'abstract': 1,
44 'msvs_settings': { 47 'msvs_settings': {
45 'VCCLCompilerTool': { 48 'VCCLCompilerTool': {
46 'Optimization': '<(dart_debug_optimization_level)', 49 'Optimization': '<(dart_debug_optimization_level)',
47 'BasicRuntimeChecks': '0', # disable /RTC1 when compiling /O2 50 'BasicRuntimeChecks': '0', # disable /RTC1 when compiling /O2
48 'DebugInformationFormat': '3', 51 'DebugInformationFormat': '3',
49 'ExceptionHandling': '0', 52 'ExceptionHandling': '0',
50 'RuntimeTypeInfo': 'false', 53 'RuntimeTypeInfo': 'false',
51 'RuntimeLibrary': '1', # /MTd - Multi-threaded, static (debug) 54 'RuntimeLibrary': '1', # /MTd - Multi-threaded, static (debug)
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after
128 }, 131 },
129 }, 132 },
130 # C4351 warns MSVC follows the C++ specification regarding array 133 # C4351 warns MSVC follows the C++ specification regarding array
131 # initialization in member initializers. Code that expects the 134 # initialization in member initializers. Code that expects the
132 # specified behavior should silence this warning. 135 # specified behavior should silence this warning.
133 'msvs_disabled_warnings': [4351], 136 'msvs_disabled_warnings': [4351],
134 }, 137 },
135 }, 138 },
136 }, 139 },
137 } 140 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698