| 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 152 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 163 'growable_array.h', | 163 'growable_array.h', |
| 164 'growable_array_test.cc', | 164 'growable_array_test.cc', |
| 165 'handles.cc', | 165 'handles.cc', |
| 166 'handles.h', | 166 'handles.h', |
| 167 'handles_impl.h', | 167 'handles_impl.h', |
| 168 'handles_test.cc', | 168 'handles_test.cc', |
| 169 'hash_map.h', | 169 'hash_map.h', |
| 170 'hash_map_test.cc', | 170 'hash_map_test.cc', |
| 171 'heap.cc', | 171 'heap.cc', |
| 172 'heap.h', | 172 'heap.h', |
| 173 'heap_histogram.cc', |
| 174 'heap_histogram.h', |
| 173 'heap_profiler.cc', | 175 'heap_profiler.cc', |
| 174 'heap_profiler.h', | 176 'heap_profiler.h', |
| 175 'heap_profiler_test.cc', | 177 'heap_profiler_test.cc', |
| 176 'heap_test.cc', | 178 'heap_test.cc', |
| 177 'il_printer.cc', | 179 'il_printer.cc', |
| 178 'il_printer.h', | 180 'il_printer.h', |
| 179 'instructions.h', | 181 'instructions.h', |
| 180 'instructions_arm.cc', | 182 'instructions_arm.cc', |
| 181 'instructions_arm.h', | 183 'instructions_arm.h', |
| 182 'instructions_arm_test.cc', | 184 'instructions_arm_test.cc', |
| (...skipping 148 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 331 'virtual_memory_test.cc', | 333 'virtual_memory_test.cc', |
| 332 'virtual_memory_win.cc', | 334 'virtual_memory_win.cc', |
| 333 'visitor.h', | 335 'visitor.h', |
| 334 'vtune.cc', | 336 'vtune.cc', |
| 335 'vtune.h', | 337 'vtune.h', |
| 336 'zone.cc', | 338 'zone.cc', |
| 337 'zone.h', | 339 'zone.h', |
| 338 'zone_test.cc', | 340 'zone_test.cc', |
| 339 ], | 341 ], |
| 340 } | 342 } |
| OLD | NEW |