| 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 160 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 171 'growable_array_test.cc', | 171 'growable_array_test.cc', |
| 172 'guard_field_test.cc', | 172 'guard_field_test.cc', |
| 173 'handles.cc', | 173 'handles.cc', |
| 174 'handles.h', | 174 'handles.h', |
| 175 'handles_impl.h', | 175 'handles_impl.h', |
| 176 'handles_test.cc', | 176 'handles_test.cc', |
| 177 'hash_map.h', | 177 'hash_map.h', |
| 178 'hash_map_test.cc', | 178 'hash_map_test.cc', |
| 179 'heap.cc', | 179 'heap.cc', |
| 180 'heap.h', | 180 'heap.h', |
| 181 'heap_class_stats.cc', |
| 182 'heap_class_stats.h', |
| 181 'heap_histogram.cc', | 183 'heap_histogram.cc', |
| 182 'heap_histogram.h', | 184 'heap_histogram.h', |
| 183 'heap_profiler.cc', | 185 'heap_profiler.cc', |
| 184 'heap_profiler.h', | 186 'heap_profiler.h', |
| 185 'heap_profiler_test.cc', | 187 'heap_profiler_test.cc', |
| 186 'heap_test.cc', | 188 'heap_test.cc', |
| 187 'il_printer.cc', | 189 'il_printer.cc', |
| 188 'il_printer.h', | 190 'il_printer.h', |
| 189 'instructions.h', | 191 'instructions.h', |
| 190 'instructions_arm.cc', | 192 'instructions_arm.cc', |
| (...skipping 159 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 350 'visitor.h', | 352 'visitor.h', |
| 351 'vtune.cc', | 353 'vtune.cc', |
| 352 'vtune.h', | 354 'vtune.h', |
| 353 'weak_table.cc', | 355 'weak_table.cc', |
| 354 'weak_table.h', | 356 'weak_table.h', |
| 355 'zone.cc', | 357 'zone.cc', |
| 356 'zone.h', | 358 'zone.h', |
| 357 'zone_test.cc', | 359 'zone_test.cc', |
| 358 ], | 360 ], |
| 359 } | 361 } |
| OLD | NEW |