Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(392)

Side by Side Diff: runtime/tools/gyp/runtime_configurations_android.gypi

Issue 15706008: A working version of dart on Android. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Finished CL - ready for review. Created 7 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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 }
OLDNEW
« runtime/tools/create_snapshot_bin.py ('K') | « runtime/tools/create_snapshot_bin.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698