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

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

Issue 11859034: Add mips and simmips build targets. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 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 | Annotate | Revision Log
« no previous file with comments | « tools/gyp/configurations.gypi ('k') | tools/testing/dart/test_options.dart » ('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 'arm_cross_libc%': '/opt/codesourcery/arm-2009q1/arm-none-linux-gnueabi/libc ', 7 'arm_cross_libc%': '/opt/codesourcery/arm-2009q1/arm-none-linux-gnueabi/libc ',
8 'dart_debug_optimization_level%': '2', 8 'dart_debug_optimization_level%': '2',
9 }, 9 },
10 'target_defaults': { 10 'target_defaults': {
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
48 48
49 'Dart_arm_Base': { 49 'Dart_arm_Base': {
50 'cflags': [ 50 'cflags': [
51 '-march=armv7-a', 51 '-march=armv7-a',
52 '-mfpu=vfp', 52 '-mfpu=vfp',
53 '-mfloat-abi=softfp', 53 '-mfloat-abi=softfp',
54 '-fno-strict-overflow', 54 '-fno-strict-overflow',
55 ], 55 ],
56 }, 56 },
57 57
58 'Dart_simmips_Base': {
59 'cflags': [ '-O3', '-m32', ],
60 'ldflags': [ '-m32', ],
61 },
62
63 'Dart_mips_Base': {
64 'cflags': [
65 '-march=mips32r2',
66 '-mhard-float',
67 '-fno-strict-overflow',
68 ],
69 },
70
58 'Dart_Debug': { 71 'Dart_Debug': {
59 'cflags': [ '-O<(dart_debug_optimization_level)' ], 72 'cflags': [ '-O<(dart_debug_optimization_level)' ],
60 }, 73 },
61 74
62 'Dart_Release': { 75 'Dart_Release': {
63 'cflags': [ '-O3', ], 76 'cflags': [ '-O3', ],
64 }, 77 },
65 }, 78 },
66 }, 79 },
67 } 80 }
OLDNEW
« no previous file with comments | « tools/gyp/configurations.gypi ('k') | tools/testing/dart/test_options.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698