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

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

Issue 9254026: Split dart:builtin into dart:builtin and dart:io. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Address comment and add binaries. 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
« no previous file with comments | « runtime/bin/builtin_nolib.cc ('k') | runtime/bin/dartutils.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 (vm and tests) for the dart virtual machine. 5 # This file contains all dart sources for the dart:builtin library.
6 # Unit test files need to have a '_test' suffix appended to the name.
7 { 6 {
8 'sources': [ 7 'sources': [
9 #
10 # Dart sources.
11 #
12 'builtin.dart', 8 'builtin.dart',
13 'buffer_list.dart',
14 'chunked_stream.dart',
15 'directory.dart',
16 'directory_impl.dart',
17 'eventhandler.dart',
18 'file.dart',
19 'file_impl.dart',
20 'input_stream.dart',
21 'list_stream.dart',
22 'output_stream.dart',
23 'stream_util.dart',
24 'string_stream.dart',
25 'platform.dart',
26 'platform_impl.dart',
27 'process.dart',
28 'process_impl.dart',
29 'socket.dart',
30 'socket_impl.dart',
31 'socket_stream.dart',
32 'timer.dart',
33 'timer_impl.dart',
34 #
35 # C++ sources.
36 #
37 'dartutils.cc',
38 'dartutils.h',
39 'directory.cc',
40 'directory.h',
41 'directory_posix.cc',
42 'directory_win.cc',
43 'eventhandler.cc',
44 'eventhandler.h',
45 'eventhandler_linux.cc',
46 'eventhandler_linux.h',
47 'eventhandler_macos.cc',
48 'eventhandler_macos.h',
49 'eventhandler_win.cc',
50 'eventhandler_win.h',
51 'file.cc',
52 'file.h',
53 'file_linux.cc',
54 'file_macos.cc',
55 'file_win.cc',
56 'file_test.cc',
57 'fdutils.h',
58 'fdutils_linux.cc',
59 'fdutils_macos.cc',
60 'hashmap.cc',
61 'hashmap.h',
62 'hashmap_test.cc',
63 'platform.cc',
64 'platform.h',
65 'platform_linux.cc',
66 'platform_macos.cc',
67 'platform_win.cc',
68 'process.cc',
69 'process.h',
70 'process_linux.cc',
71 'process_macos.cc',
72 'process_win.cc',
73 'socket.cc',
74 'socket.h',
75 'socket_linux.cc',
76 'socket_macos.cc',
77 'socket_win.cc',
78 'set.h',
79 'set_test.cc',
80 'thread.h',
81 'thread_pool.cc',
82 'thread_pool_linux.cc',
83 'thread_pool_linux.h',
84 'thread_pool_macos.cc',
85 'thread_pool_macos.h',
86 'thread_pool_test.cc',
87 'thread_pool_win.cc',
88 'thread_pool_win.h',
89 ], 9 ],
90 } 10 }
OLDNEW
« no previous file with comments | « runtime/bin/builtin_nolib.cc ('k') | runtime/bin/dartutils.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698