| 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 272 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 283 'locations.h', | 283 'locations.h', |
| 284 'lockers.cc', | 284 'lockers.cc', |
| 285 'lockers.h', | 285 'lockers.h', |
| 286 'log_test.cc', | 286 'log_test.cc', |
| 287 'log.cc', | 287 'log.cc', |
| 288 'log.h', | 288 'log.h', |
| 289 'longjump.cc', | 289 'longjump.cc', |
| 290 'longjump.h', | 290 'longjump.h', |
| 291 'longjump_test.cc', | 291 'longjump_test.cc', |
| 292 'malloc_hooks.cc', | 292 'malloc_hooks.cc', |
| 293 'malloc_hooks_ia32.cc', |
| 294 'malloc_hooks_x64.cc', |
| 293 'malloc_hooks.h', | 295 'malloc_hooks.h', |
| 294 'malloc_hooks_test.cc', | 296 'malloc_hooks_test.cc', |
| 295 'malloc_hooks_unsupported.cc', | 297 'malloc_hooks_unsupported.cc', |
| 296 'megamorphic_cache_table.cc', | 298 'megamorphic_cache_table.cc', |
| 297 'megamorphic_cache_table.h', | 299 'megamorphic_cache_table.h', |
| 298 'memory_region.cc', | 300 'memory_region.cc', |
| 299 'memory_region.h', | 301 'memory_region.h', |
| 300 'memory_region_test.cc', | 302 'memory_region_test.cc', |
| 301 'message.cc', | 303 'message.cc', |
| 302 'message.h', | 304 'message.h', |
| (...skipping 255 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 558 'weak_code.h', | 560 'weak_code.h', |
| 559 'weak_table.cc', | 561 'weak_table.cc', |
| 560 'weak_table.h', | 562 'weak_table.h', |
| 561 'zone.cc', | 563 'zone.cc', |
| 562 'zone.h', | 564 'zone.h', |
| 563 'zone_test.cc', | 565 'zone_test.cc', |
| 564 'zone_text_buffer.cc', | 566 'zone_text_buffer.cc', |
| 565 'zone_text_buffer.h', | 567 'zone_text_buffer.h', |
| 566 ], | 568 ], |
| 567 } | 569 } |
| OLD | NEW |