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

Side by Side Diff: runtime/tools/gyp/runtime-configurations.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 | « runtime/tests/vm/vm.status ('k') | runtime/vm/assembler_arm_test.cc » ('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) 2012, the Dart project authors. Please see the AUTHORS file 1 # Copyright (c) 2012, 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 # If we have not set dart_io_support to 1 in Dart's all.gypi or common.gypi, 8 # If we have not set dart_io_support to 1 in Dart's all.gypi or common.gypi,
9 # then do not build the native libraries supporting dart:io. 9 # then do not build the native libraries supporting dart:io.
10 'dart_io_support%': 0, 10 'dart_io_support%': 0,
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after
85 ], 85 ],
86 }, 86 },
87 87
88 'Dart_simarm_Base': { 88 'Dart_simarm_Base': {
89 'abstract': 1, 89 'abstract': 1,
90 'xcode_settings': { 90 'xcode_settings': {
91 'ARCHS': [ 'i386' ], 91 'ARCHS': [ 'i386' ],
92 }, 92 },
93 }, 93 },
94 94
95 'Dart_simarmv6_Base': {
96 'abstract': 1,
97 'xcode_settings': {
98 'ARCHS': [ 'i386' ],
99 },
100 },
101
102 'Dart_simarmv5te_Base': {
103 'abstract': 1,
104 'xcode_settings': {
105 'ARCHS': [ 'i386' ],
106 },
107 },
108
95 'Dart_simmips_Base': { 109 'Dart_simmips_Base': {
96 'abstract': 1, 110 'abstract': 1,
97 'xcode_settings': { 111 'xcode_settings': {
98 'ARCHS': [ 'i386' ], 112 'ARCHS': [ 'i386' ],
99 }, 113 },
100 }, 114 },
101 115
102 'Dart_Release': { 116 'Dart_Release': {
103 'abstract': 1, 117 'abstract': 1,
104 'xcode_settings': { 118 'xcode_settings': {
105 'GCC_OPTIMIZATION_LEVEL': '3', 119 'GCC_OPTIMIZATION_LEVEL': '3',
106 }, 120 },
107 }, 121 },
108 }, 122 },
109 }, 123 },
110 } 124 }
OLDNEW
« no previous file with comments | « runtime/tests/vm/vm.status ('k') | runtime/vm/assembler_arm_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698