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

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

Issue 1624593002: Adds targets for simarmv6 and armv6 (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Add xcode settings for simarmv6 and v5te Created 4 years, 11 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 | « tools/gyp/configurations_make.gypi ('k') | 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': {
11 'Dart_Win_Base': { 11 'Dart_Win_Base': {
12 'abstract': 1, 12 'abstract': 1,
13 'defines': [ 13 'defines': [
14 '_HAS_EXCEPTIONS=0', # disable C++ exceptions use in C++ std. libs. 14 '_HAS_EXCEPTIONS=0', # disable C++ exceptions use in C++ std. libs.
15 ], 15 ],
16 }, 16 },
17 'Dart_Win_ia32_Base': { 17 'Dart_Win_ia32_Base': {
18 'abstract': 1, 18 'abstract': 1,
19 }, 19 },
20 'Dart_Win_x64_Base': { 20 'Dart_Win_x64_Base': {
21 'abstract': 1, 21 'abstract': 1,
22 'msvs_configuration_platform': 'x64', 22 'msvs_configuration_platform': 'x64',
23 }, 23 },
24 'Dart_Win_simarm_Base': { 24 'Dart_Win_simarm_Base': {
25 'abstract': 1, 25 'abstract': 1,
26 }, 26 },
27 'Dart_Win_simarmv6_Base': {
28 'abstract': 1,
29 },
27 'Dart_Win_simarmv5te_Base': { 30 'Dart_Win_simarmv5te_Base': {
28 'abstract': 1, 31 'abstract': 1,
29 }, 32 },
30 'Dart_Win_simarm64_Base': { 33 'Dart_Win_simarm64_Base': {
31 'abstract': 1, 34 'abstract': 1,
32 }, 35 },
33 'Dart_Win_simmips_Base': { 36 'Dart_Win_simmips_Base': {
34 'abstract': 1, 37 'abstract': 1,
35 }, 38 },
36 'Dart_Win_Debug': { 39 'Dart_Win_Debug': {
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after
112 }], 115 }],
113 ], 116 ],
114 # C4351 warns MSVC follows the C++ specification regarding array 117 # C4351 warns MSVC follows the C++ specification regarding array
115 # initialization in member initializers. Code that expects the 118 # initialization in member initializers. Code that expects the
116 # specified behavior should silence this warning. 119 # specified behavior should silence this warning.
117 'msvs_disabled_warnings': [4351], 120 'msvs_disabled_warnings': [4351],
118 }, 121 },
119 }, 122 },
120 }, 123 },
121 } 124 }
OLDNEW
« no previous file with comments | « tools/gyp/configurations_make.gypi ('k') | tools/gyp/configurations_xcode.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698