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

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

Issue 1077823002: Adds a simarmv5te build and test target. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 5 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 | Annotate | Revision Log
« no previous file with comments | « tools/gyp/configurations.gypi ('k') | tools/gyp/configurations_msvs.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 28 matching lines...) Expand all
39 'cflags': [ '-m64', '-msse2' ], 39 'cflags': [ '-m64', '-msse2' ],
40 'ldflags': [ '-m64', ], 40 'ldflags': [ '-m64', ],
41 }, 41 },
42 42
43 'Dart_Linux_simarm_Base': { 43 'Dart_Linux_simarm_Base': {
44 'abstract': 1, 44 'abstract': 1,
45 'cflags': [ '-O3', '-m32', '-msse2' ], 45 'cflags': [ '-O3', '-m32', '-msse2' ],
46 'ldflags': [ '-m32', ], 46 'ldflags': [ '-m32', ],
47 }, 47 },
48 48
49 'Dart_Linux_simarmv5te_Base': {
50 'abstract': 1,
51 'cflags': [ '-O3', '-m32', '-msse2' ],
52 'ldflags': [ '-m32', ],
53 },
54
49 'Dart_Linux_simarm64_Base': { 55 'Dart_Linux_simarm64_Base': {
50 'abstract': 1, 56 'abstract': 1,
51 'cflags': [ '-O3', '-m64', '-msse2' ], 57 'cflags': [ '-O3', '-m64', '-msse2' ],
52 'ldflags': [ '-m64', ], 58 'ldflags': [ '-m64', ],
53 }, 59 },
54 60
55 # ARM cross-build 61 # ARM cross-build
56 'Dart_Linux_xarm_Base': { 62 'Dart_Linux_xarm_Base': {
57 'abstract': 1, 63 'abstract': 1,
58 'target_conditions': [ 64 'target_conditions': [
(...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after
201 ], 207 ],
202 }], 208 }],
203 ], 209 ],
204 'cflags': [ 210 'cflags': [
205 '-O3', 211 '-O3',
206 ], 212 ],
207 }, 213 },
208 }, 214 },
209 }, 215 },
210 } 216 }
OLDNEW
« no previous file with comments | « tools/gyp/configurations.gypi ('k') | tools/gyp/configurations_msvs.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698