| 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 156 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 167 'find_code_object_test.cc', | 167 'find_code_object_test.cc', |
| 168 'flags.cc', | 168 'flags.cc', |
| 169 'flags.h', | 169 'flags.h', |
| 170 'flags_test.cc', | 170 'flags_test.cc', |
| 171 'flow_graph.cc', | 171 'flow_graph.cc', |
| 172 'flow_graph.h', | 172 'flow_graph.h', |
| 173 'flow_graph_allocator.cc', | 173 'flow_graph_allocator.cc', |
| 174 'flow_graph_allocator.h', | 174 'flow_graph_allocator.h', |
| 175 'flow_graph_builder.cc', | 175 'flow_graph_builder.cc', |
| 176 'flow_graph_builder.h', | 176 'flow_graph_builder.h', |
| 177 'flow_graph_builder_test.cc', |
| 177 'flow_graph_compiler.cc', | 178 'flow_graph_compiler.cc', |
| 178 'flow_graph_compiler.h', | 179 'flow_graph_compiler.h', |
| 179 'flow_graph_compiler_arm.cc', | 180 'flow_graph_compiler_arm.cc', |
| 180 'flow_graph_compiler_arm64.cc', | 181 'flow_graph_compiler_arm64.cc', |
| 181 'flow_graph_compiler_ia32.cc', | 182 'flow_graph_compiler_ia32.cc', |
| 182 'flow_graph_compiler_mips.cc', | 183 'flow_graph_compiler_mips.cc', |
| 183 'flow_graph_compiler_x64.cc', | 184 'flow_graph_compiler_x64.cc', |
| 184 'flow_graph_inliner.cc', | 185 'flow_graph_inliner.cc', |
| 185 'flow_graph_inliner.h', | 186 'flow_graph_inliner.h', |
| 186 'flow_graph_optimizer.cc', | 187 'flow_graph_optimizer.cc', |
| (...skipping 314 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 501 'vtune.h', | 502 'vtune.h', |
| 502 'weak_code.cc', | 503 'weak_code.cc', |
| 503 'weak_code.h', | 504 'weak_code.h', |
| 504 'weak_table.cc', | 505 'weak_table.cc', |
| 505 'weak_table.h', | 506 'weak_table.h', |
| 506 'zone.cc', | 507 'zone.cc', |
| 507 'zone.h', | 508 'zone.h', |
| 508 'zone_test.cc', | 509 'zone_test.cc', |
| 509 ], | 510 ], |
| 510 } | 511 } |
| OLD | NEW |