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