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