Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(914)

Side by Side Diff: runtime/bin/io_sources.gypi

Issue 9289042: Minor changes to the dart:io library files. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 'buffer_list.dart', 14 'buffer_list.dart',
15 'chunked_stream.dart', 15 'chunked_stream.dart',
16 'directory.dart', 16 'directory.dart',
17 'directory_impl.dart', 17 'directory_impl.dart',
18 'eventhandler.dart', 18 'eventhandler.dart',
19 'file.dart', 19 'file.dart',
20 'file_impl.dart', 20 'file_impl.dart',
21 'input_stream.dart', 21 'input_stream.dart',
22 'list_stream.dart', 22 'list_stream.dart',
23 'list_stream_impl.dart',
23 'output_stream.dart', 24 'output_stream.dart',
24 'stream_util.dart', 25 'stream_util.dart',
25 'string_stream.dart', 26 'string_stream.dart',
26 'platform.dart', 27 'platform.dart',
27 'platform_impl.dart', 28 'platform_impl.dart',
28 'process.dart', 29 'process.dart',
29 'process_impl.dart', 30 'process_impl.dart',
30 'socket.dart', 31 'socket.dart',
31 'socket_impl.dart', 32 'socket_impl.dart',
32 'socket_stream.dart', 33 'socket_stream.dart',
34 'socket_stream_impl.dart',
33 'stdio.dart', 35 'stdio.dart',
34 'timer.dart', 36 'timer.dart',
35 'timer_impl.dart', 37 'timer_impl.dart',
36 ], 38 ],
37 } 39 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698