| 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 (vm and tests) for the dart virtual machine. | 5 # This file contains all C++ sources for the dart:builtin and dart:io |
| 6 # Unit test files need to have a '_test' suffix appended to the name. | 6 # libraries. |
| 7 { | 7 { |
| 8 'sources': [ | 8 'sources': [ |
| 9 # | |
| 10 # Dart sources. | |
| 11 # | |
| 12 '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', | 9 'dartutils.cc', |
| 38 'dartutils.h', | 10 'dartutils.h', |
| 39 'directory.cc', | 11 'directory.cc', |
| 40 'directory.h', | 12 'directory.h', |
| 41 'directory_posix.cc', | 13 'directory_posix.cc', |
| 42 'directory_win.cc', | 14 'directory_win.cc', |
| 43 'eventhandler.cc', | 15 'eventhandler.cc', |
| 44 'eventhandler.h', | 16 'eventhandler.h', |
| 45 'eventhandler_linux.cc', | 17 'eventhandler_linux.cc', |
| 46 'eventhandler_linux.h', | 18 'eventhandler_linux.h', |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 81 'thread_pool.cc', | 53 'thread_pool.cc', |
| 82 'thread_pool_linux.cc', | 54 'thread_pool_linux.cc', |
| 83 'thread_pool_linux.h', | 55 'thread_pool_linux.h', |
| 84 'thread_pool_macos.cc', | 56 'thread_pool_macos.cc', |
| 85 'thread_pool_macos.h', | 57 'thread_pool_macos.h', |
| 86 'thread_pool_test.cc', | 58 'thread_pool_test.cc', |
| 87 'thread_pool_win.cc', | 59 'thread_pool_win.cc', |
| 88 'thread_pool_win.h', | 60 'thread_pool_win.h', |
| 89 ], | 61 ], |
| 90 } | 62 } |
| OLD | NEW |