| 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 167 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 178 'flow_graph_builder_test.cc', | 178 'flow_graph_builder_test.cc', |
| 179 'flow_graph_compiler.cc', | 179 'flow_graph_compiler.cc', |
| 180 'flow_graph_compiler.h', | 180 'flow_graph_compiler.h', |
| 181 'flow_graph_compiler_arm.cc', | 181 'flow_graph_compiler_arm.cc', |
| 182 'flow_graph_compiler_arm64.cc', | 182 'flow_graph_compiler_arm64.cc', |
| 183 'flow_graph_compiler_ia32.cc', | 183 'flow_graph_compiler_ia32.cc', |
| 184 'flow_graph_compiler_mips.cc', | 184 'flow_graph_compiler_mips.cc', |
| 185 'flow_graph_compiler_x64.cc', | 185 'flow_graph_compiler_x64.cc', |
| 186 'flow_graph_inliner.cc', | 186 'flow_graph_inliner.cc', |
| 187 'flow_graph_inliner.h', | 187 'flow_graph_inliner.h', |
| 188 'flow_graph_optimizer.cc', | |
| 189 'flow_graph_optimizer.h', | |
| 190 'flow_graph_range_analysis.cc', | 188 'flow_graph_range_analysis.cc', |
| 191 'flow_graph_range_analysis.h', | 189 'flow_graph_range_analysis.h', |
| 192 'flow_graph_range_analysis_test.cc', | 190 'flow_graph_range_analysis_test.cc', |
| 193 'flow_graph_type_propagator.cc', | 191 'flow_graph_type_propagator.cc', |
| 194 'flow_graph_type_propagator.h', | 192 'flow_graph_type_propagator.h', |
| 195 'freelist.cc', | 193 'freelist.cc', |
| 196 'freelist.h', | 194 'freelist.h', |
| 197 'freelist_test.cc', | 195 'freelist_test.cc', |
| 198 'gc_marker.cc', | 196 'gc_marker.cc', |
| 199 'gc_marker.h', | 197 'gc_marker.h', |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 243 'intrinsifier.cc', | 241 'intrinsifier.cc', |
| 244 'intrinsifier.h', | 242 'intrinsifier.h', |
| 245 'intrinsifier_arm.cc', | 243 'intrinsifier_arm.cc', |
| 246 'intrinsifier_arm64.cc', | 244 'intrinsifier_arm64.cc', |
| 247 'intrinsifier_ia32.cc', | 245 'intrinsifier_ia32.cc', |
| 248 'intrinsifier_mips.cc', | 246 'intrinsifier_mips.cc', |
| 249 'intrinsifier_x64.cc', | 247 'intrinsifier_x64.cc', |
| 250 'isolate.cc', | 248 'isolate.cc', |
| 251 'isolate.h', | 249 'isolate.h', |
| 252 'isolate_test.cc', | 250 'isolate_test.cc', |
| 251 'jit_optimizer.cc', |
| 252 'jit_optimizer.h', |
| 253 'json_stream.h', | 253 'json_stream.h', |
| 254 'json_stream.cc', | 254 'json_stream.cc', |
| 255 'json_test.cc', | 255 'json_test.cc', |
| 256 'locations.cc', | 256 'locations.cc', |
| 257 'locations.h', | 257 'locations.h', |
| 258 'lockers.cc', | 258 'lockers.cc', |
| 259 'lockers.h', | 259 'lockers.h', |
| 260 'log_test.cc', | 260 'log_test.cc', |
| 261 'log.cc', | 261 'log.cc', |
| 262 'log.h', | 262 'log.h', |
| (...skipping 238 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 501 'visitor.h', | 501 'visitor.h', |
| 502 'weak_code.cc', | 502 'weak_code.cc', |
| 503 'weak_code.h', | 503 'weak_code.h', |
| 504 'weak_table.cc', | 504 'weak_table.cc', |
| 505 'weak_table.h', | 505 'weak_table.h', |
| 506 'zone.cc', | 506 'zone.cc', |
| 507 'zone.h', | 507 'zone.h', |
| 508 'zone_test.cc', | 508 'zone_test.cc', |
| 509 ], | 509 ], |
| 510 } | 510 } |
| OLD | NEW |