OLD | NEW |
---|---|
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 'common_gcc_warning_flags': [ | 7 'common_gcc_warning_flags': [ |
8 '-Wall', | 8 '-Wall', |
9 '-Wextra', # Also known as -W. | 9 '-Wextra', # Also known as -W. |
10 '-Wno-unused-parameter', | 10 '-Wno-unused-parameter', |
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
48 'defines': [ | 48 'defines': [ |
49 'TARGET_ARCH_ARM', | 49 'TARGET_ARCH_ARM', |
50 ] | 50 ] |
51 }, | 51 }, |
52 | 52 |
53 'Dart_arm_Base': { | 53 'Dart_arm_Base': { |
54 'abstract': 1, | 54 'abstract': 1, |
55 'defines': [ | 55 'defines': [ |
56 'TARGET_ARCH_ARM', | 56 'TARGET_ARCH_ARM', |
57 ], | 57 ], |
58 'target_conditions': [ | |
59 ['_toolset=="target" ', { | |
60 'ldflags': ['-static'], | |
zra
2013/05/17 15:56:37
I think we'll only be cross-compiling on Linux for
kustermann
2013/05/17 16:05:33
Good point. I thought people might use ninja on li
| |
61 }] | |
62 ], | |
58 }, | 63 }, |
59 | 64 |
60 'Dart_simmips_Base': { | 65 'Dart_simmips_Base': { |
61 'abstract': 1, | 66 'abstract': 1, |
62 'defines': [ | 67 'defines': [ |
63 'TARGET_ARCH_MIPS', | 68 'TARGET_ARCH_MIPS', |
64 ] | 69 ] |
65 }, | 70 }, |
66 | 71 |
67 'Dart_mips_Base': { | 72 'Dart_mips_Base': { |
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
141 'Debug': { | 146 'Debug': { |
142 'inherit_from': ['Debug<(dart_target_arch)'] | 147 'inherit_from': ['Debug<(dart_target_arch)'] |
143 }, | 148 }, |
144 | 149 |
145 'Release': { | 150 'Release': { |
146 'inherit_from': ['Release<(dart_target_arch)'] | 151 'inherit_from': ['Release<(dart_target_arch)'] |
147 }, | 152 }, |
148 }, | 153 }, |
149 }, | 154 }, |
150 } | 155 } |
OLD | NEW |