| OLD | NEW |
| 1 # Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file | 1 # Copyright (c) 2011, 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 sources (vm and tests) for the dart virtual machine. |
| 6 # Unit test files need to have a '_test' suffix appended to the name. | 6 # Unit test files need to have a '_test' suffix appended to the name. |
| 7 { | 7 { |
| 8 'sources': [ | 8 'sources': [ |
| 9 # | 9 # |
| 10 # Dart sources. | 10 # Dart sources. |
| 11 # | 11 # |
| 12 'builtin.dart', | 12 'builtin.dart', |
| 13 'buffer_list.dart', | 13 'buffer_list.dart', |
| 14 'chunked_stream.dart', |
| 14 'directory.dart', | 15 'directory.dart', |
| 15 'directory_impl.dart', | 16 'directory_impl.dart', |
| 16 'eventhandler.dart', | 17 'eventhandler.dart', |
| 17 'file.dart', | 18 'file.dart', |
| 18 'file_impl.dart', | 19 'file_impl.dart', |
| 19 'input_stream.dart', | 20 'input_stream.dart', |
| 20 'output_stream.dart', | 21 'output_stream.dart', |
| 21 'string_stream.dart', | 22 'string_stream.dart', |
| 22 'platform.dart', | 23 'platform.dart', |
| 23 'platform_impl.dart', | 24 'platform_impl.dart', |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 67 'process_win.cc', | 68 'process_win.cc', |
| 68 'socket.cc', | 69 'socket.cc', |
| 69 'socket.h', | 70 'socket.h', |
| 70 'socket_linux.cc', | 71 'socket_linux.cc', |
| 71 'socket_macos.cc', | 72 'socket_macos.cc', |
| 72 'socket_win.cc', | 73 'socket_win.cc', |
| 73 'set.h', | 74 'set.h', |
| 74 'set_test.cc', | 75 'set_test.cc', |
| 75 ], | 76 ], |
| 76 } | 77 } |
| OLD | NEW |