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 '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 'dart_debug_optimization_level%': '0', |
9 }, | 10 }, |
10 'target_defaults': { | 11 'target_defaults': { |
11 'configurations': { | 12 'configurations': { |
12 'Dart_Base': { | 13 'Dart_Base': { |
13 'abstract': 1, | 14 'abstract': 1, |
14 'cflags': [ | 15 'cflags': [ |
15 '-Werror', | 16 '-Werror', |
16 '<@(common_gcc_warning_flags)', | 17 '<@(common_gcc_warning_flags)', |
17 '-Wnon-virtual-dtor', | 18 '-Wnon-virtual-dtor', |
18 '-Wvla', | 19 '-Wvla', |
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
88 '-fno-omit-frame-pointer', | 89 '-fno-omit-frame-pointer', |
89 ], | 90 ], |
90 }, | 91 }, |
91 | 92 |
92 'Dart_Release': { | 93 'Dart_Release': { |
93 'cflags': [ '-O3', ], | 94 'cflags': [ '-O3', ], |
94 }, | 95 }, |
95 }, | 96 }, |
96 }, | 97 }, |
97 } | 98 } |
OLD | NEW |