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

Side by Side Diff: lib/io/iolib_sources.gypi

Issue 11337019: Use patching for dart:io. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Address comments Created 8 years, 1 month 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) 2012, the Dart project authors. Please see the AUTHORS file 1 # Copyright (c) 2012, 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 # This file contains all sources for the dart:io library.
6 { 5 {
7 'sources': [ 6 'sources': [
8 # The io.dart file needs to be the first source file. It contains
9 # the library and import directives for the dart:io library. The
10 # dart:io library is created by concatenating the files listed here
11 # in the order they are listed.
12 'io.dart',
13
14 'base64.dart', 7 'base64.dart',
15 'buffer_list.dart', 8 'buffer_list.dart',
16 'chunked_stream.dart', 9 'chunked_stream.dart',
17 'common.dart', 10 'common.dart',
18 'directory.dart', 11 'directory.dart',
19 'directory_impl.dart', 12 'directory_impl.dart',
20 'eventhandler.dart', 13 'eventhandler.dart',
21 'file.dart', 14 'file.dart',
22 'file_impl.dart', 15 'file_impl.dart',
23 'http.dart', 16 'http.dart',
24 'http_impl.dart', 17 'http_impl.dart',
25 'http_parser.dart', 18 'http_parser.dart',
26 'http_session.dart', 19 'http_session.dart',
27 'http_utils.dart', 20 'http_utils.dart',
28 'input_stream.dart', 21 'input_stream.dart',
29 'list_stream.dart', 22 'list_stream.dart',
30 'list_stream_impl.dart', 23 'list_stream_impl.dart',
31 'mime_multipart_parser.dart', 24 'mime_multipart_parser.dart',
32 'output_stream.dart', 25 'output_stream.dart',
33 'path.dart', 26 'path.dart',
34 'path_impl.dart', 27 'path_impl.dart',
35 'platform.dart', 28 'platform.dart',
36 'platform_impl.dart', 29 'platform_impl.dart',
37 'process.dart', 30 'process.dart',
38 'process_impl.dart',
39 'socket.dart', 31 'socket.dart',
40 'socket_impl.dart',
41 'socket_stream_impl.dart', 32 'socket_stream_impl.dart',
42 'stdio.dart', 33 'stdio.dart',
43 'stream_util.dart', 34 'stream_util.dart',
44 'string_stream.dart', 35 'string_stream.dart',
45 'timer_impl.dart', 36 'timer_impl.dart',
46 'websocket.dart', 37 'websocket.dart',
47 'websocket_impl.dart', 38 'websocket_impl.dart',
48 ], 39 ],
49 } 40 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698