| 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 164 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 175 'flow_graph_compiler.h', | 175 'flow_graph_compiler.h', |
| 176 'flow_graph_compiler_arm.cc', | 176 'flow_graph_compiler_arm.cc', |
| 177 'flow_graph_compiler_arm64.cc', | 177 'flow_graph_compiler_arm64.cc', |
| 178 'flow_graph_compiler_ia32.cc', | 178 'flow_graph_compiler_ia32.cc', |
| 179 'flow_graph_compiler_mips.cc', | 179 'flow_graph_compiler_mips.cc', |
| 180 'flow_graph_compiler_x64.cc', | 180 'flow_graph_compiler_x64.cc', |
| 181 'flow_graph_inliner.cc', | 181 'flow_graph_inliner.cc', |
| 182 'flow_graph_inliner.h', | 182 'flow_graph_inliner.h', |
| 183 'flow_graph_optimizer.cc', | 183 'flow_graph_optimizer.cc', |
| 184 'flow_graph_optimizer.h', | 184 'flow_graph_optimizer.h', |
| 185 'flow_graph_range_analysis.cc', |
| 186 'flow_graph_range_analysis.h', |
| 187 'flow_graph_range_analysis_test.cc', |
| 185 'flow_graph_type_propagator.cc', | 188 'flow_graph_type_propagator.cc', |
| 186 'flow_graph_type_propagator.h', | 189 'flow_graph_type_propagator.h', |
| 187 'freelist.cc', | 190 'freelist.cc', |
| 188 'freelist.h', | 191 'freelist.h', |
| 189 'freelist_test.cc', | 192 'freelist_test.cc', |
| 190 'gc_marker.cc', | 193 'gc_marker.cc', |
| 191 'gc_marker.h', | 194 'gc_marker.h', |
| 192 'gc_sweeper.cc', | 195 'gc_sweeper.cc', |
| 193 'gc_sweeper.h', | 196 'gc_sweeper.h', |
| 194 'gdbjit_android.cc', | 197 'gdbjit_android.cc', |
| (...skipping 234 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 429 'visitor.h', | 432 'visitor.h', |
| 430 'vtune.cc', | 433 'vtune.cc', |
| 431 'vtune.h', | 434 'vtune.h', |
| 432 'weak_table.cc', | 435 'weak_table.cc', |
| 433 'weak_table.h', | 436 'weak_table.h', |
| 434 'zone.cc', | 437 'zone.cc', |
| 435 'zone.h', | 438 'zone.h', |
| 436 'zone_test.cc', | 439 'zone_test.cc', |
| 437 ], | 440 ], |
| 438 } | 441 } |
| OLD | NEW |