| OLD | NEW |
| 1 # Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 # Copyright (c) 2012, 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 118 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 129 'flow_graph_builder.cc', | 129 'flow_graph_builder.cc', |
| 130 'flow_graph_builder.h', | 130 'flow_graph_builder.h', |
| 131 'flow_graph_compiler.cc', | 131 'flow_graph_compiler.cc', |
| 132 'flow_graph_compiler.h', | 132 'flow_graph_compiler.h', |
| 133 'flow_graph_compiler_arm.cc', | 133 'flow_graph_compiler_arm.cc', |
| 134 'flow_graph_compiler_arm.h', | 134 'flow_graph_compiler_arm.h', |
| 135 'flow_graph_compiler_ia32.cc', | 135 'flow_graph_compiler_ia32.cc', |
| 136 'flow_graph_compiler_ia32.h', | 136 'flow_graph_compiler_ia32.h', |
| 137 'flow_graph_compiler_x64.cc', | 137 'flow_graph_compiler_x64.cc', |
| 138 'flow_graph_compiler_x64.h', | 138 'flow_graph_compiler_x64.h', |
| 139 'flow_graph_inliner.cc', | |
| 140 'flow_graph_inliner.h', | |
| 141 'flow_graph_optimizer.cc', | 139 'flow_graph_optimizer.cc', |
| 142 'flow_graph_optimizer.h', | 140 'flow_graph_optimizer.h', |
| 143 'freelist.cc', | 141 'freelist.cc', |
| 144 'freelist.h', | 142 'freelist.h', |
| 145 'freelist_test.cc', | 143 'freelist_test.cc', |
| 146 'gc_marker.cc', | 144 'gc_marker.cc', |
| 147 'gc_marker.h', | 145 'gc_marker.h', |
| 148 'gc_sweeper.cc', | 146 'gc_sweeper.cc', |
| 149 'gc_sweeper.h', | 147 'gc_sweeper.h', |
| 150 'gdbjit_android.cc', | 148 'gdbjit_android.cc', |
| (...skipping 152 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 303 'virtual_memory_test.cc', | 301 'virtual_memory_test.cc', |
| 304 'virtual_memory_win.cc', | 302 'virtual_memory_win.cc', |
| 305 'verifier.cc', | 303 'verifier.cc', |
| 306 'verifier.h', | 304 'verifier.h', |
| 307 'visitor.h', | 305 'visitor.h', |
| 308 'zone.cc', | 306 'zone.cc', |
| 309 'zone.h', | 307 'zone.h', |
| 310 'zone_test.cc', | 308 'zone_test.cc', |
| 311 ], | 309 ], |
| 312 } | 310 } |
| OLD | NEW |