| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 201 ], | 207 ], |
| 202 }], | 208 }], |
| 203 ], | 209 ], |
| 204 'cflags': [ | 210 'cflags': [ |
| 205 '-O3', | 211 '-O3', |
| 206 ], | 212 ], |
| 207 }, | 213 }, |
| 208 }, | 214 }, |
| 209 }, | 215 }, |
| 210 } | 216 } |
| OLD | NEW |