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 267 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
278 'locations.cc', | 278 'locations.cc', |
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', |
| 289 'malloc_hooks_unsupported.cc', |
| 290 'malloc_hooks.h', |
288 'megamorphic_cache_table.cc', | 291 'megamorphic_cache_table.cc', |
289 'megamorphic_cache_table.h', | 292 'megamorphic_cache_table.h', |
290 'memory_region.cc', | 293 'memory_region.cc', |
291 'memory_region.h', | 294 'memory_region.h', |
292 'memory_region_test.cc', | 295 'memory_region_test.cc', |
293 'message.cc', | 296 'message.cc', |
294 'message.h', | 297 'message.h', |
295 'message_handler.cc', | 298 'message_handler.cc', |
296 'message_handler.h', | 299 'message_handler.h', |
297 'message_handler_test.cc', | 300 'message_handler_test.cc', |
(...skipping 248 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
546 'visitor.h', | 549 'visitor.h', |
547 'weak_code.cc', | 550 'weak_code.cc', |
548 'weak_code.h', | 551 'weak_code.h', |
549 'weak_table.cc', | 552 'weak_table.cc', |
550 'weak_table.h', | 553 'weak_table.h', |
551 'zone.cc', | 554 'zone.cc', |
552 'zone.h', | 555 'zone.h', |
553 'zone_test.cc', | 556 'zone_test.cc', |
554 ], | 557 ], |
555 } | 558 } |
OLD | NEW |