| 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 # 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 | 9 # the library and import directives for the dart:io library. The |
| 10 # dart:io library is created by concatenating the files listed here | 10 # dart:io library is created by concatenating the files listed here |
| 11 # in the order they are listed. | 11 # in the order they are listed. |
| 12 'io.dart', | 12 'io.dart', |
| 13 | 13 |
| 14 'base64.dart', | 14 'base64.dart', |
| 15 'buffer_list.dart', | 15 'buffer_list.dart', |
| 16 'chunked_stream.dart', | 16 'chunked_stream.dart', |
| 17 'common.dart', | 17 'common.dart', |
| 18 'directory.dart', | 18 'directory.dart', |
| 19 'directory_impl.dart', | 19 'directory_impl.dart', |
| 20 'eventhandler.dart', | 20 'eventhandler.dart', |
| 21 'file.dart', | 21 'file.dart', |
| 22 'file_impl.dart', | 22 'file_impl.dart', |
| 23 'filter.dart', |
| 24 'filter_impl.dart', |
| 23 'http.dart', | 25 'http.dart', |
| 24 'http_impl.dart', | 26 'http_impl.dart', |
| 25 'http_parser.dart', | 27 'http_parser.dart', |
| 26 'http_utils.dart', | 28 'http_utils.dart', |
| 27 'input_stream.dart', | 29 'input_stream.dart', |
| 28 'list_stream.dart', | 30 'list_stream.dart', |
| 29 'list_stream_impl.dart', | 31 'list_stream_impl.dart', |
| 30 'mime_multipart_parser.dart', | 32 'mime_multipart_parser.dart', |
| 31 'output_stream.dart', | 33 'output_stream.dart', |
| 32 'path.dart', | 34 'path.dart', |
| 33 'path_impl.dart', | 35 'path_impl.dart', |
| 34 'platform.dart', | 36 'platform.dart', |
| 35 'platform_impl.dart', | 37 'platform_impl.dart', |
| 36 'process.dart', | 38 'process.dart', |
| 37 'process_impl.dart', | 39 'process_impl.dart', |
| 38 'socket.dart', | 40 'socket.dart', |
| 39 'socket_impl.dart', | 41 'socket_impl.dart', |
| 40 'socket_stream.dart', | 42 'socket_stream.dart', |
| 41 'socket_stream_impl.dart', | 43 'socket_stream_impl.dart', |
| 42 'stdio.dart', | 44 'stdio.dart', |
| 43 'stream_util.dart', | 45 'stream_util.dart', |
| 44 'string_stream.dart', | 46 'string_stream.dart', |
| 45 'timer_impl.dart', | 47 'timer_impl.dart', |
| 46 'websocket.dart', | 48 'websocket.dart', |
| 47 'websocket_impl.dart', | 49 'websocket_impl.dart', |
| 48 ], | 50 ], |
| 49 } | 51 } |
| OLD | NEW |