| OLD | NEW |
| 1 # Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file | 1 # Copyright (c) 2013, 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 # Definitions for building Chrome with Dart on Android. | 5 # Definitions for building Chrome with Dart on Android. |
| 6 # This is mostly excerpted from: | 6 # This is mostly excerpted from: |
| 7 # http://src.chromium.org/viewvc/chrome/trunk/src/build/common.gypi | 7 # http://src.chromium.org/viewvc/chrome/trunk/src/build/common.gypi |
| 8 | 8 |
| 9 { | 9 { |
| 10 'variables': { |
| 11 'dart_io_support': 0, |
| 12 }, |
| 10 'target_defaults': { | 13 'target_defaults': { |
| 11 'cflags': [ | 14 'cflags': [ |
| 12 '-Wno-abi', | 15 '-Wno-abi', |
| 13 '-Wall', | 16 '-Wall', |
| 14 '-W', | 17 '-W', |
| 15 '-Wno-unused-parameter', | 18 '-Wno-unused-parameter', |
| 16 '-Wnon-virtual-dtor', | 19 '-Wnon-virtual-dtor', |
| 17 '-fno-rtti', | 20 '-fno-rtti', |
| 18 '-fno-exceptions', | 21 '-fno-exceptions', |
| 19 ], | 22 ], |
| (...skipping 25 matching lines...) Expand all Loading... |
| 45 'ldflags': [ | 48 'ldflags': [ |
| 46 '-nostdlib', | 49 '-nostdlib', |
| 47 '-Wl,--no-undefined', | 50 '-Wl,--no-undefined', |
| 48 # Don't export symbols from statically linked libraries. | 51 # Don't export symbols from statically linked libraries. |
| 49 '-Wl,--exclude-libs=ALL', | 52 '-Wl,--exclude-libs=ALL', |
| 50 ], | 53 ], |
| 51 }], # _toolset=="target" | 54 }], # _toolset=="target" |
| 52 ], # target_conditions | 55 ], # target_conditions |
| 53 }, # target_defaults | 56 }, # target_defaults |
| 54 } | 57 } |
| OLD | NEW |