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 186 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
197 'globals.h', | 197 'globals.h', |
198 'growable_array.h', | 198 'growable_array.h', |
199 'growable_array_test.cc', | 199 'growable_array_test.cc', |
200 'guard_field_test.cc', | 200 'guard_field_test.cc', |
201 'handles.cc', | 201 'handles.cc', |
202 'handles.h', | 202 'handles.h', |
203 'handles_impl.h', | 203 'handles_impl.h', |
204 'handles_test.cc', | 204 'handles_test.cc', |
205 'hash_map.h', | 205 'hash_map.h', |
206 'hash_map_test.cc', | 206 'hash_map_test.cc', |
| 207 'hash_table.h', |
| 208 'hash_table_test.cc', |
207 'heap.cc', | 209 'heap.cc', |
208 'heap.h', | 210 'heap.h', |
209 'heap_test.cc', | 211 'heap_test.cc', |
210 'il_printer.cc', | 212 'il_printer.cc', |
211 'il_printer.h', | 213 'il_printer.h', |
212 'instructions.h', | 214 'instructions.h', |
213 'instructions_arm.cc', | 215 'instructions_arm.cc', |
214 'instructions_arm.h', | 216 'instructions_arm.h', |
215 'instructions_arm_test.cc', | 217 'instructions_arm_test.cc', |
216 'instructions_arm64.cc', | 218 'instructions_arm64.cc', |
(...skipping 209 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
426 'visitor.h', | 428 'visitor.h', |
427 'vtune.cc', | 429 'vtune.cc', |
428 'vtune.h', | 430 'vtune.h', |
429 'weak_table.cc', | 431 'weak_table.cc', |
430 'weak_table.h', | 432 'weak_table.h', |
431 'zone.cc', | 433 'zone.cc', |
432 'zone.h', | 434 'zone.h', |
433 'zone_test.cc', | 435 'zone_test.cc', |
434 ], | 436 ], |
435 } | 437 } |
OLD | NEW |