| 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 |
| (...skipping 26 matching lines...) Expand all Loading... |
| 37 'process.dart', | 37 'process.dart', |
| 38 'process_impl.dart', | 38 'process_impl.dart', |
| 39 'socket.dart', | 39 'socket.dart', |
| 40 'socket_impl.dart', | 40 'socket_impl.dart', |
| 41 'socket_stream.dart', | 41 'socket_stream.dart', |
| 42 'socket_stream_impl.dart', | 42 'socket_stream_impl.dart', |
| 43 'stdio.dart', | 43 'stdio.dart', |
| 44 'stream_util.dart', | 44 'stream_util.dart', |
| 45 'string_stream.dart', | 45 'string_stream.dart', |
| 46 'timer_impl.dart', | 46 'timer_impl.dart', |
| 47 'tls_socket.dart', |
| 48 'tls_socket_impl.dart', |
| 47 'websocket.dart', | 49 'websocket.dart', |
| 48 'websocket_impl.dart', | 50 'websocket_impl.dart', |
| 49 ], | 51 ], |
| 50 } | 52 } |
| OLD | NEW |