| 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 185 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 196 'flow_graph_range_analysis_test.cc', | 196 'flow_graph_range_analysis_test.cc', |
| 197 'flow_graph_type_propagator.cc', | 197 'flow_graph_type_propagator.cc', |
| 198 'flow_graph_type_propagator.h', | 198 'flow_graph_type_propagator.h', |
| 199 'freelist.cc', | 199 'freelist.cc', |
| 200 'freelist.h', | 200 'freelist.h', |
| 201 'freelist_test.cc', | 201 'freelist_test.cc', |
| 202 'gc_marker.cc', | 202 'gc_marker.cc', |
| 203 'gc_marker.h', | 203 'gc_marker.h', |
| 204 'gc_sweeper.cc', | 204 'gc_sweeper.cc', |
| 205 'gc_sweeper.h', | 205 'gc_sweeper.h', |
| 206 'gdb_helpers.cc', |
| 206 'globals.h', | 207 'globals.h', |
| 207 'growable_array.h', | 208 'growable_array.h', |
| 208 'growable_array_test.cc', | 209 'growable_array_test.cc', |
| 209 'guard_field_test.cc', | 210 'guard_field_test.cc', |
| 210 'handles.cc', | 211 'handles.cc', |
| 211 'handles.h', | 212 'handles.h', |
| 212 'handles_impl.h', | 213 'handles_impl.h', |
| 213 'handles_test.cc', | 214 'handles_test.cc', |
| 214 'hash_map.h', | 215 'hash_map.h', |
| 215 'hash_map_test.cc', | 216 'hash_map_test.cc', |
| (...skipping 330 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 546 'weak_code.h', | 547 'weak_code.h', |
| 547 'weak_table.cc', | 548 'weak_table.cc', |
| 548 'weak_table.h', | 549 'weak_table.h', |
| 549 'zone.cc', | 550 'zone.cc', |
| 550 'zone.h', | 551 'zone.h', |
| 551 'zone_test.cc', | 552 'zone_test.cc', |
| 552 'zone_text_buffer.cc', | 553 'zone_text_buffer.cc', |
| 553 'zone_text_buffer.h', | 554 'zone_text_buffer.h', |
| 554 ], | 555 ], |
| 555 } | 556 } |
| OLD | NEW |