| 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 269 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 280 'locations.cc', | 280 'locations.cc', |
| 281 'locations.h', | 281 'locations.h', |
| 282 'lockers.cc', | 282 'lockers.cc', |
| 283 'lockers.h', | 283 'lockers.h', |
| 284 'log_test.cc', | 284 'log_test.cc', |
| 285 'log.cc', | 285 'log.cc', |
| 286 'log.h', | 286 'log.h', |
| 287 'longjump.cc', | 287 'longjump.cc', |
| 288 'longjump.h', | 288 'longjump.h', |
| 289 'longjump_test.cc', | 289 'longjump_test.cc', |
| 290 'malloc_hooks.cc', | 290 'malloc_hooks_jemalloc.cc', |
| 291 'malloc_hooks_tcmalloc.cc', |
| 291 'malloc_hooks_arm.cc', | 292 'malloc_hooks_arm.cc', |
| 292 'malloc_hooks_arm64.cc', | 293 'malloc_hooks_arm64.cc', |
| 293 'malloc_hooks_ia32.cc', | 294 'malloc_hooks_ia32.cc', |
| 294 'malloc_hooks_mips.cc', | 295 'malloc_hooks_mips.cc', |
| 295 'malloc_hooks_x64.cc', | 296 'malloc_hooks_x64.cc', |
| 296 'malloc_hooks.h', | 297 'malloc_hooks.h', |
| 297 'malloc_hooks_test.cc', | 298 'malloc_hooks_test.cc', |
| 298 'malloc_hooks_unsupported.cc', | 299 'malloc_hooks_unsupported.cc', |
| 299 'megamorphic_cache_table.cc', | 300 'megamorphic_cache_table.cc', |
| 300 'megamorphic_cache_table.h', | 301 'megamorphic_cache_table.h', |
| (...skipping 263 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 564 'weak_code.h', | 565 'weak_code.h', |
| 565 'weak_table.cc', | 566 'weak_table.cc', |
| 566 'weak_table.h', | 567 'weak_table.h', |
| 567 'zone.cc', | 568 'zone.cc', |
| 568 'zone.h', | 569 'zone.h', |
| 569 'zone_test.cc', | 570 'zone_test.cc', |
| 570 'zone_text_buffer.cc', | 571 'zone_text_buffer.cc', |
| 571 'zone_text_buffer.h', | 572 'zone_text_buffer.h', |
| 572 ], | 573 ], |
| 573 } | 574 } |
| OLD | NEW |