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 }, | 9 }, |
10 'target_defaults': { | 10 'target_defaults': { |
11 'configurations': { | 11 'configurations': { |
12 'Dart_Base': { | 12 'Dart_Base': { |
| 13 'abstract': 1, |
13 'cflags': [ | 14 'cflags': [ |
14 '-Werror', | 15 '-Werror', |
15 '<@(common_gcc_warning_flags)', | 16 '<@(common_gcc_warning_flags)', |
16 '-Wnon-virtual-dtor', | 17 '-Wnon-virtual-dtor', |
17 '-Wvla', | 18 '-Wvla', |
18 '-Wno-conversion-null', | 19 '-Wno-conversion-null', |
19 # TODO(v8-team): Fix V8 build. | 20 # TODO(v8-team): Fix V8 build. |
20 #'-Woverloaded-virtual', | 21 #'-Woverloaded-virtual', |
21 '-g3', | 22 '-g3', |
22 '-ggdb3', | 23 '-ggdb3', |
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
71 'Dart_Debug': { | 72 'Dart_Debug': { |
72 'cflags': [ '-O<(dart_debug_optimization_level)' ], | 73 'cflags': [ '-O<(dart_debug_optimization_level)' ], |
73 }, | 74 }, |
74 | 75 |
75 'Dart_Release': { | 76 'Dart_Release': { |
76 'cflags': [ '-O3', ], | 77 'cflags': [ '-O3', ], |
77 }, | 78 }, |
78 }, | 79 }, |
79 }, | 80 }, |
80 } | 81 } |
OLD | NEW |