| 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 }, | 8 }, |
| 9 'target_defaults': { | 9 'target_defaults': { |
| 10 'configurations': { | 10 'configurations': { |
| 11 'Dart_Base': { | 11 'Dart_Base': { |
| 12 'cflags': [ | 12 'cflags': [ |
| 13 '-Werror', | 13 '-Werror', |
| 14 '<@(common_gcc_warning_flags)', | 14 '<@(common_gcc_warning_flags)', |
| 15 '-Wnon-virtual-dtor', | 15 '-Wnon-virtual-dtor', |
| 16 '-Wvla', | 16 '-Wvla', |
| 17 '-Wno-conversion-null', |
| 17 # TODO(v8-team): Fix V8 build. | 18 # TODO(v8-team): Fix V8 build. |
| 18 #'-Woverloaded-virtual', | 19 #'-Woverloaded-virtual', |
| 19 '-g3', | 20 '-g3', |
| 20 '-ggdb3', | 21 '-ggdb3', |
| 21 '-ansi', | 22 '-ansi', |
| 22 '-fno-rtti', | 23 '-fno-rtti', |
| 23 '-fno-exceptions', | 24 '-fno-exceptions', |
| 24 '-fPIC', | 25 '-fPIC', |
| 25 '-fvisibility=hidden', | 26 '-fvisibility=hidden', |
| 26 '-fvisibility-inlines-hidden', | 27 '-fvisibility-inlines-hidden', |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 61 'Dart_Debug': { | 62 'Dart_Debug': { |
| 62 'cflags': [ '-O2' ], | 63 'cflags': [ '-O2' ], |
| 63 }, | 64 }, |
| 64 | 65 |
| 65 'Dart_Release': { | 66 'Dart_Release': { |
| 66 'cflags': [ '-O3', ], | 67 'cflags': [ '-O3', ], |
| 67 }, | 68 }, |
| 68 }, | 69 }, |
| 69 }, | 70 }, |
| 70 } | 71 } |
| OLD | NEW |