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 268 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
279 'locations.h', | 279 'locations.h', |
280 'lockers.cc', | 280 'lockers.cc', |
281 'lockers.h', | 281 'lockers.h', |
282 'log_test.cc', | 282 'log_test.cc', |
283 'log.cc', | 283 'log.cc', |
284 'log.h', | 284 'log.h', |
285 'longjump.cc', | 285 'longjump.cc', |
286 'longjump.h', | 286 'longjump.h', |
287 'longjump_test.cc', | 287 'longjump_test.cc', |
288 'malloc_hooks.cc', | 288 'malloc_hooks.cc', |
| 289 'malloc_hooks.h', |
| 290 'malloc_hooks_test.cc', |
289 'malloc_hooks_unsupported.cc', | 291 'malloc_hooks_unsupported.cc', |
290 'malloc_hooks.h', | |
291 'megamorphic_cache_table.cc', | 292 'megamorphic_cache_table.cc', |
292 'megamorphic_cache_table.h', | 293 'megamorphic_cache_table.h', |
293 'memory_region.cc', | 294 'memory_region.cc', |
294 'memory_region.h', | 295 'memory_region.h', |
295 'memory_region_test.cc', | 296 'memory_region_test.cc', |
296 'message.cc', | 297 'message.cc', |
297 'message.h', | 298 'message.h', |
298 'message_handler.cc', | 299 'message_handler.cc', |
299 'message_handler.h', | 300 'message_handler.h', |
300 'message_handler_test.cc', | 301 'message_handler_test.cc', |
(...skipping 248 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
549 'visitor.h', | 550 'visitor.h', |
550 'weak_code.cc', | 551 'weak_code.cc', |
551 'weak_code.h', | 552 'weak_code.h', |
552 'weak_table.cc', | 553 'weak_table.cc', |
553 'weak_table.h', | 554 'weak_table.h', |
554 'zone.cc', | 555 'zone.cc', |
555 'zone.h', | 556 'zone.h', |
556 'zone_test.cc', | 557 'zone_test.cc', |
557 ], | 558 ], |
558 } | 559 } |
OLD | NEW |