OLD | NEW |
---|---|
1 # Copyright (c) 2017, the Dart project authors. Please see the AUTHORS file | 1 # Copyright (c) 2017, 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 vm_sources = [ | 7 vm_sources = [ |
8 "allocation.cc", | 8 "allocation.cc", |
9 "allocation.h", | 9 "allocation.h", |
10 "aot_optimizer.cc", | 10 "aot_optimizer.cc", |
(...skipping 276 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
287 "program_visitor.cc", | 287 "program_visitor.cc", |
288 "program_visitor.h", | 288 "program_visitor.h", |
289 "kernel.h", | 289 "kernel.h", |
290 "kernel.cc", | 290 "kernel.cc", |
291 "kernel_binary.cc", | 291 "kernel_binary.cc", |
292 "kernel_binary.h", | 292 "kernel_binary.h", |
293 "kernel_binary_flowgraph.cc", | 293 "kernel_binary_flowgraph.cc", |
294 "kernel_binary_flowgraph.h", | 294 "kernel_binary_flowgraph.h", |
295 "kernel_to_il.cc", | 295 "kernel_to_il.cc", |
296 "kernel_to_il.h", | 296 "kernel_to_il.h", |
297 "kernel_reader.h", | 297 "kernel_loader.h", |
zra
2017/08/28 14:38:06
DBC: Please keep this list alphabetized.
sivachandra
2017/08/28 15:14:44
Done. Thanks for catching!
| |
298 "kernel_reader.cc", | 298 "kernel_loader.cc", |
299 "proccpuinfo.cc", | 299 "proccpuinfo.cc", |
300 "proccpuinfo.h", | 300 "proccpuinfo.h", |
301 "profiler_service.cc", | 301 "profiler_service.cc", |
302 "profiler_service.h", | 302 "profiler_service.h", |
303 "profiler.cc", | 303 "profiler.cc", |
304 "profiler.h", | 304 "profiler.h", |
305 "random.cc", | 305 "random.cc", |
306 "random.h", | 306 "random.h", |
307 "raw_object.cc", | 307 "raw_object.cc", |
308 "raw_object.h", | 308 "raw_object.h", |
(...skipping 243 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
552 "thread_test.cc", | 552 "thread_test.cc", |
553 "timeline_test.cc", | 553 "timeline_test.cc", |
554 "unicode_test.cc", | 554 "unicode_test.cc", |
555 "unit_test.cc", | 555 "unit_test.cc", |
556 "unit_test.h", | 556 "unit_test.h", |
557 "uri_test.cc", | 557 "uri_test.cc", |
558 "utils_test.cc", | 558 "utils_test.cc", |
559 "virtual_memory_test.cc", | 559 "virtual_memory_test.cc", |
560 "zone_test.cc", | 560 "zone_test.cc", |
561 ] | 561 ] |
OLD | NEW |