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 398 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
409 'simulator_arm.cc', | 409 'simulator_arm.cc', |
410 'simulator_arm.h', | 410 'simulator_arm.h', |
411 'simulator_arm64.cc', | 411 'simulator_arm64.cc', |
412 'simulator_arm64.h', | 412 'simulator_arm64.h', |
413 'simulator_mips.cc', | 413 'simulator_mips.cc', |
414 'simulator_mips.h', | 414 'simulator_mips.h', |
415 'snapshot.cc', | 415 'snapshot.cc', |
416 'snapshot.h', | 416 'snapshot.h', |
417 'snapshot_ids.h', | 417 'snapshot_ids.h', |
418 'snapshot_test.cc', | 418 'snapshot_test.cc', |
| 419 'source_report.cc', |
| 420 'source_report.h', |
| 421 'source_report_test.cc', |
419 'spaces.h', | 422 'spaces.h', |
420 'stack_frame.cc', | 423 'stack_frame.cc', |
421 'stack_frame.h', | 424 'stack_frame.h', |
422 'stack_frame_arm.h', | 425 'stack_frame_arm.h', |
423 'stack_frame_arm64.h', | 426 'stack_frame_arm64.h', |
424 'stack_frame_ia32.h', | 427 'stack_frame_ia32.h', |
425 'stack_frame_mips.h', | 428 'stack_frame_mips.h', |
426 'stack_frame_test.cc', | 429 'stack_frame_test.cc', |
427 'stack_frame_x64.h', | 430 'stack_frame_x64.h', |
428 'store_buffer.cc', | 431 'store_buffer.cc', |
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
498 'vtune.h', | 501 'vtune.h', |
499 'weak_code.cc', | 502 'weak_code.cc', |
500 'weak_code.h', | 503 'weak_code.h', |
501 'weak_table.cc', | 504 'weak_table.cc', |
502 'weak_table.h', | 505 'weak_table.h', |
503 'zone.cc', | 506 'zone.cc', |
504 'zone.h', | 507 'zone.h', |
505 'zone_test.cc', | 508 'zone_test.cc', |
506 ], | 509 ], |
507 } | 510 } |
OLD | NEW |