OLD | NEW |
(Empty) | |
| 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 |
| 3 # BSD-style license that can be found in the LICENSE file. |
| 4 |
| 5 # This file contains all sources for the dart:io library. |
| 6 { |
| 7 '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 'buffer_list.dart', |
| 15 'chunked_stream.dart', |
| 16 'directory.dart', |
| 17 'directory_impl.dart', |
| 18 'eventhandler.dart', |
| 19 'file.dart', |
| 20 'file_impl.dart', |
| 21 'input_stream.dart', |
| 22 'list_stream.dart', |
| 23 'output_stream.dart', |
| 24 'stream_util.dart', |
| 25 'string_stream.dart', |
| 26 'platform.dart', |
| 27 'platform_impl.dart', |
| 28 'process.dart', |
| 29 'process_impl.dart', |
| 30 'socket.dart', |
| 31 'socket_impl.dart', |
| 32 'socket_stream.dart', |
| 33 'stdio.dart', |
| 34 'timer.dart', |
| 35 'timer_impl.dart', |
| 36 ], |
| 37 } |
OLD | NEW |