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', | |
209 'heap.cc', | 207 'heap.cc', |
210 'heap.h', | 208 'heap.h', |
211 'heap_test.cc', | 209 'heap_test.cc', |
212 'il_printer.cc', | 210 'il_printer.cc', |
213 'il_printer.h', | 211 'il_printer.h', |
214 'instructions.h', | 212 'instructions.h', |
215 'instructions_arm.cc', | 213 'instructions_arm.cc', |
216 'instructions_arm.h', | 214 'instructions_arm.h', |
217 'instructions_arm_test.cc', | 215 'instructions_arm_test.cc', |
218 'instructions_arm64.cc', | 216 'instructions_arm64.cc', |
(...skipping 209 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
428 'visitor.h', | 426 'visitor.h', |
429 'vtune.cc', | 427 'vtune.cc', |
430 'vtune.h', | 428 'vtune.h', |
431 'weak_table.cc', | 429 'weak_table.cc', |
432 'weak_table.h', | 430 'weak_table.h', |
433 'zone.cc', | 431 'zone.cc', |
434 'zone.h', | 432 'zone.h', |
435 'zone_test.cc', | 433 'zone_test.cc', |
436 ], | 434 ], |
437 } | 435 } |
OLD | NEW |