OLD | NEW |
1 # Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file | 1 # Copyright (c) 2013, 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 'allocation.cc', | 9 'allocation.cc', |
10 'allocation.h', | 10 'allocation.h', |
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
73 'branch_optimizer.cc', | 73 'branch_optimizer.cc', |
74 'branch_optimizer.h', | 74 'branch_optimizer.h', |
75 'cha.cc', | 75 'cha.cc', |
76 'cha.h', | 76 'cha.h', |
77 'cha_test.cc', | 77 'cha_test.cc', |
78 'class_finalizer.cc', | 78 'class_finalizer.cc', |
79 'class_finalizer.h', | 79 'class_finalizer.h', |
80 'class_finalizer_test.cc', | 80 'class_finalizer_test.cc', |
81 'class_table.cc', | 81 'class_table.cc', |
82 'class_table.h', | 82 'class_table.h', |
| 83 'clustered_snapshot.cc', |
| 84 'clustered_snapshot.h', |
83 'code_descriptors.cc', | 85 'code_descriptors.cc', |
84 'code_descriptors.h', | 86 'code_descriptors.h', |
85 'code_descriptors_test.cc', | 87 'code_descriptors_test.cc', |
86 'code_generator.cc', | 88 'code_generator.cc', |
87 'code_generator.h', | 89 'code_generator.h', |
88 'code_generator_test.cc', | 90 'code_generator_test.cc', |
89 'code_observers.cc', | 91 'code_observers.cc', |
90 'code_observers.h', | 92 'code_observers.h', |
91 'code_patcher.cc', | 93 'code_patcher.cc', |
92 'code_patcher.h', | 94 'code_patcher.h', |
(...skipping 435 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
528 'visitor.h', | 530 'visitor.h', |
529 'weak_code.cc', | 531 'weak_code.cc', |
530 'weak_code.h', | 532 'weak_code.h', |
531 'weak_table.cc', | 533 'weak_table.cc', |
532 'weak_table.h', | 534 'weak_table.h', |
533 'zone.cc', | 535 'zone.cc', |
534 'zone.h', | 536 'zone.h', |
535 'zone_test.cc', | 537 'zone_test.cc', |
536 ], | 538 ], |
537 } | 539 } |
OLD | NEW |