OLD | NEW |
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. | 5 # This file contains all sources for the dart:io library. |
6 { | 6 { |
7 'sources': [ | 7 'sources': [ |
8 # The io.dart file needs to be the first source file. It contains | 8 'common_patch.dart', |
9 # the library and import directives for the dart:io library. The | 9 'directory_patch.dart', |
10 # dart:io library is created by concatenating the files listed here | 10 'eventhandler_patch.dart', |
11 # in the order they are listed. | 11 'file_patch.dart', |
12 'io.dart', | 12 'http_patch.dart', |
13 | 13 'platform_patch.dart', |
14 'base64.dart', | 14 'process_patch.dart', |
15 'buffer_list.dart', | 15 'socket_patch.dart', |
16 'chunked_stream.dart', | 16 'stdio_patch.dart', |
17 'common.dart', | |
18 'directory.dart', | |
19 'directory_impl.dart', | |
20 'eventhandler.dart', | |
21 'file.dart', | |
22 'file_impl.dart', | |
23 'http.dart', | |
24 'http_impl.dart', | |
25 'http_parser.dart', | |
26 'http_session.dart', | |
27 'http_utils.dart', | |
28 'input_stream.dart', | |
29 'list_stream.dart', | |
30 'list_stream_impl.dart', | |
31 'mime_multipart_parser.dart', | |
32 'output_stream.dart', | |
33 'path.dart', | |
34 'path_impl.dart', | |
35 'platform.dart', | |
36 'platform_impl.dart', | |
37 'process.dart', | |
38 'process_impl.dart', | |
39 'socket.dart', | |
40 'socket_impl.dart', | |
41 'socket_stream_impl.dart', | |
42 'stdio.dart', | |
43 'stream_util.dart', | |
44 'string_stream.dart', | |
45 'timer_impl.dart', | |
46 'websocket.dart', | |
47 'websocket_impl.dart', | |
48 ], | 17 ], |
49 } | 18 } |
OLD | NEW |