| 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 147 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 158 'disassembler_test.cc', | 158 'disassembler_test.cc', |
| 159 'disassembler_x64.cc', | 159 'disassembler_x64.cc', |
| 160 'double_conversion.cc', | 160 'double_conversion.cc', |
| 161 'double_conversion.h', | 161 'double_conversion.h', |
| 162 'double_internals.h', | 162 'double_internals.h', |
| 163 'elfgen.h', | 163 'elfgen.h', |
| 164 'exceptions.cc', | 164 'exceptions.cc', |
| 165 'exceptions.h', | 165 'exceptions.h', |
| 166 'exceptions_test.cc', | 166 'exceptions_test.cc', |
| 167 'find_code_object_test.cc', | 167 'find_code_object_test.cc', |
| 168 'flag_list.h', |
| 168 'flags.cc', | 169 'flags.cc', |
| 169 'flags.h', | 170 'flags.h', |
| 170 'flags_test.cc', | 171 'flags_test.cc', |
| 171 'flow_graph.cc', | 172 'flow_graph.cc', |
| 172 'flow_graph.h', | 173 'flow_graph.h', |
| 173 'flow_graph_allocator.cc', | 174 'flow_graph_allocator.cc', |
| 174 'flow_graph_allocator.h', | 175 'flow_graph_allocator.h', |
| 175 'flow_graph_builder.cc', | 176 'flow_graph_builder.cc', |
| 176 'flow_graph_builder.h', | 177 'flow_graph_builder.h', |
| 177 'flow_graph_builder_test.cc', | 178 'flow_graph_builder_test.cc', |
| (...skipping 329 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 507 'vtune.h', | 508 'vtune.h', |
| 508 'weak_code.cc', | 509 'weak_code.cc', |
| 509 'weak_code.h', | 510 'weak_code.h', |
| 510 'weak_table.cc', | 511 'weak_table.cc', |
| 511 'weak_table.h', | 512 'weak_table.h', |
| 512 'zone.cc', | 513 'zone.cc', |
| 513 'zone.h', | 514 'zone.h', |
| 514 'zone_test.cc', | 515 'zone_test.cc', |
| 515 ], | 516 ], |
| 516 } | 517 } |
| OLD | NEW |