| 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 137 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 148 'flow_graph_compiler.cc', | 148 'flow_graph_compiler.cc', |
| 149 'flow_graph_compiler.h', | 149 'flow_graph_compiler.h', |
| 150 'flow_graph_compiler_arm.cc', | 150 'flow_graph_compiler_arm.cc', |
| 151 'flow_graph_compiler_ia32.cc', | 151 'flow_graph_compiler_ia32.cc', |
| 152 'flow_graph_compiler_mips.cc', | 152 'flow_graph_compiler_mips.cc', |
| 153 'flow_graph_compiler_x64.cc', | 153 'flow_graph_compiler_x64.cc', |
| 154 'flow_graph_inliner.cc', | 154 'flow_graph_inliner.cc', |
| 155 'flow_graph_inliner.h', | 155 'flow_graph_inliner.h', |
| 156 'flow_graph_optimizer.cc', | 156 'flow_graph_optimizer.cc', |
| 157 'flow_graph_optimizer.h', | 157 'flow_graph_optimizer.h', |
| 158 'flow_graph_type_propagator.cc', |
| 159 'flow_graph_type_propagator.h', |
| 158 'freelist.cc', | 160 'freelist.cc', |
| 159 'freelist.h', | 161 'freelist.h', |
| 160 'freelist_test.cc', | 162 'freelist_test.cc', |
| 161 'gc_marker.cc', | 163 'gc_marker.cc', |
| 162 'gc_marker.h', | 164 'gc_marker.h', |
| 163 'gc_sweeper.cc', | 165 'gc_sweeper.cc', |
| 164 'gc_sweeper.h', | 166 'gc_sweeper.h', |
| 165 'gdbjit_android.cc', | 167 'gdbjit_android.cc', |
| 166 'gdbjit_android.h', | 168 'gdbjit_android.h', |
| 167 'gdbjit_linux.cc', | 169 'gdbjit_linux.cc', |
| (...skipping 174 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 342 'verifier.cc', | 344 'verifier.cc', |
| 343 'verifier.h', | 345 'verifier.h', |
| 344 'visitor.h', | 346 'visitor.h', |
| 345 'vtune.cc', | 347 'vtune.cc', |
| 346 'vtune.h', | 348 'vtune.h', |
| 347 'zone.cc', | 349 'zone.cc', |
| 348 'zone.h', | 350 'zone.h', |
| 349 'zone_test.cc', | 351 'zone_test.cc', |
| 350 ], | 352 ], |
| 351 } | 353 } |
| OLD | NEW |