| 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 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 79 'class_finalizer.cc', | 79 'class_finalizer.cc', |
| 80 'class_finalizer.h', | 80 'class_finalizer.h', |
| 81 'class_finalizer_test.cc', | 81 'class_finalizer_test.cc', |
| 82 'class_table.cc', | 82 'class_table.cc', |
| 83 'class_table.h', | 83 'class_table.h', |
| 84 'clustered_snapshot.cc', | 84 'clustered_snapshot.cc', |
| 85 'clustered_snapshot.h', | 85 'clustered_snapshot.h', |
| 86 'code_descriptors.cc', | 86 'code_descriptors.cc', |
| 87 'code_descriptors.h', | 87 'code_descriptors.h', |
| 88 'code_descriptors_test.cc', | 88 'code_descriptors_test.cc', |
| 89 'code_generator.cc', | |
| 90 'code_generator.h', | |
| 91 'code_generator_test.cc', | 89 'code_generator_test.cc', |
| 92 'code_observers.cc', | 90 'code_observers.cc', |
| 93 'code_observers.h', | 91 'code_observers.h', |
| 94 'code_patcher.cc', | 92 'code_patcher.cc', |
| 95 'code_patcher.h', | 93 'code_patcher.h', |
| 96 'code_patcher_arm.cc', | 94 'code_patcher_arm.cc', |
| 97 'code_patcher_arm_test.cc', | 95 'code_patcher_arm_test.cc', |
| 98 'code_patcher_arm64.cc', | 96 'code_patcher_arm64.cc', |
| 99 'code_patcher_arm64_test.cc', | 97 'code_patcher_arm64_test.cc', |
| 100 'code_patcher_dbc.cc', | 98 'code_patcher_dbc.cc', |
| (...skipping 465 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 566 'weak_code.h', | 564 'weak_code.h', |
| 567 'weak_table.cc', | 565 'weak_table.cc', |
| 568 'weak_table.h', | 566 'weak_table.h', |
| 569 'zone.cc', | 567 'zone.cc', |
| 570 'zone.h', | 568 'zone.h', |
| 571 'zone_test.cc', | 569 'zone_test.cc', |
| 572 'zone_text_buffer.cc', | 570 'zone_text_buffer.cc', |
| 573 'zone_text_buffer.h', | 571 'zone_text_buffer.h', |
| 574 ], | 572 ], |
| 575 } | 573 } |
| OLD | NEW |