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_arm.cc', |
| 294 'malloc_hooks_arm64.cc', |
| 295 'malloc_hooks_ia32.cc', |
| 296 'malloc_hooks_mips.cc', |
| 297 'malloc_hooks_x64.cc', |
293 'malloc_hooks.h', | 298 'malloc_hooks.h', |
294 'malloc_hooks_test.cc', | 299 'malloc_hooks_test.cc', |
295 'malloc_hooks_unsupported.cc', | 300 'malloc_hooks_unsupported.cc', |
296 'megamorphic_cache_table.cc', | 301 'megamorphic_cache_table.cc', |
297 'megamorphic_cache_table.h', | 302 'megamorphic_cache_table.h', |
298 'memory_region.cc', | 303 'memory_region.cc', |
299 'memory_region.h', | 304 'memory_region.h', |
300 'memory_region_test.cc', | 305 'memory_region_test.cc', |
301 'message.cc', | 306 'message.cc', |
302 'message.h', | 307 'message.h', |
(...skipping 255 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
558 'weak_code.h', | 563 'weak_code.h', |
559 'weak_table.cc', | 564 'weak_table.cc', |
560 'weak_table.h', | 565 'weak_table.h', |
561 'zone.cc', | 566 'zone.cc', |
562 'zone.h', | 567 'zone.h', |
563 'zone_test.cc', | 568 'zone_test.cc', |
564 'zone_text_buffer.cc', | 569 'zone_text_buffer.cc', |
565 'zone_text_buffer.h', | 570 'zone_text_buffer.h', |
566 ], | 571 ], |
567 } | 572 } |
OLD | NEW |