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

Side by Side Diff: sdk/lib/core/corelib_sources.gypi

Issue 16019002: Merge the dart:uri library into dart:core and update the Uri class (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Add missing files Created 7 years, 7 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) 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 'sources': [ 6 'sources': [
7 'core.dart', 7 'core.dart',
8 # The above file needs to be first as it lists the parts below. 8 # The above file needs to be first as it lists the parts below.
9 'bool.dart', 9 'bool.dart',
10 'comparable.dart', 10 'comparable.dart',
11 'date_time.dart', 11 'date_time.dart',
12 'double.dart', 12 'double.dart',
13 'duration.dart', 13 'duration.dart',
14 'encode_decode.dart', # Only used by uri.dart.
floitsch 2013/05/24 20:37:27 I would move these 3 functions into the uri.dart f
Søren Gjesse 2013/05/27 10:47:21 I wanted to postpone this to a separate CL to have
14 'errors.dart', 15 'errors.dart',
15 'exceptions.dart', 16 'exceptions.dart',
16 'expando.dart', 17 'expando.dart',
17 'function.dart', 18 'function.dart',
19 'helpers.dart', # Only used by uri.dart.
floitsch 2013/05/24 20:37:27 ditto.
Søren Gjesse 2013/05/27 10:47:21 Done.
18 'identical.dart', 20 'identical.dart',
19 'int.dart', 21 'int.dart',
20 'invocation.dart', 22 'invocation.dart',
21 'iterable.dart', 23 'iterable.dart',
22 'iterator.dart', 24 'iterator.dart',
23 'list.dart', 25 'list.dart',
24 'map.dart', 26 'map.dart',
25 'num.dart', 27 'num.dart',
26 'object.dart', 28 'object.dart',
27 'pattern.dart', 29 'pattern.dart',
28 'print.dart', 30 'print.dart',
29 'regexp.dart', 31 'regexp.dart',
30 'set.dart', 32 'set.dart',
31 'stacktrace.dart', 33 'stacktrace.dart',
32 'stopwatch.dart', 34 'stopwatch.dart',
33 'string.dart', 35 'string.dart',
34 'string_buffer.dart', 36 'string_buffer.dart',
35 'string_sink.dart', 37 'string_sink.dart',
36 'symbol.dart', 38 'symbol.dart',
37 'type.dart', 39 'type.dart',
40 'uri.dart',
38 ], 41 ],
39 } 42 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698