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 183 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
194 'globals.h', | 194 'globals.h', |
195 'growable_array.h', | 195 'growable_array.h', |
196 'growable_array_test.cc', | 196 'growable_array_test.cc', |
197 'guard_field_test.cc', | 197 'guard_field_test.cc', |
198 'handles.cc', | 198 'handles.cc', |
199 'handles.h', | 199 'handles.h', |
200 'handles_impl.h', | 200 'handles_impl.h', |
201 'handles_test.cc', | 201 'handles_test.cc', |
202 'hash_map.h', | 202 'hash_map.h', |
203 'hash_map_test.cc', | 203 'hash_map_test.cc', |
| 204 'hash_table.h', |
| 205 'hash_table_test.cc', |
204 'heap.cc', | 206 'heap.cc', |
205 'heap.h', | 207 'heap.h', |
206 'heap_test.cc', | 208 'heap_test.cc', |
207 'il_printer.cc', | 209 'il_printer.cc', |
208 'il_printer.h', | 210 'il_printer.h', |
209 'instructions.h', | 211 'instructions.h', |
210 'instructions_arm.cc', | 212 'instructions_arm.cc', |
211 'instructions_arm.h', | 213 'instructions_arm.h', |
212 'instructions_arm_test.cc', | 214 'instructions_arm_test.cc', |
213 'instructions_arm64.cc', | 215 'instructions_arm64.cc', |
(...skipping 206 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
420 'visitor.h', | 422 'visitor.h', |
421 'vtune.cc', | 423 'vtune.cc', |
422 'vtune.h', | 424 'vtune.h', |
423 'weak_table.cc', | 425 'weak_table.cc', |
424 'weak_table.h', | 426 'weak_table.h', |
425 'zone.cc', | 427 'zone.cc', |
426 'zone.h', | 428 'zone.h', |
427 'zone_test.cc', | 429 'zone_test.cc', |
428 ], | 430 ], |
429 } | 431 } |
OLD | NEW |