| 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 458 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 469 'source_report_test.cc', | 469 'source_report_test.cc', |
| 470 'spaces.h', | 470 'spaces.h', |
| 471 'stack_frame.cc', | 471 'stack_frame.cc', |
| 472 'stack_frame.h', | 472 'stack_frame.h', |
| 473 'stack_frame_arm.h', | 473 'stack_frame_arm.h', |
| 474 'stack_frame_arm64.h', | 474 'stack_frame_arm64.h', |
| 475 'stack_frame_ia32.h', | 475 'stack_frame_ia32.h', |
| 476 'stack_frame_mips.h', | 476 'stack_frame_mips.h', |
| 477 'stack_frame_test.cc', | 477 'stack_frame_test.cc', |
| 478 'stack_frame_x64.h', | 478 'stack_frame_x64.h', |
| 479 'stack_trace.cc', |
| 480 'stack_trace.h', |
| 479 'store_buffer.cc', | 481 'store_buffer.cc', |
| 480 'store_buffer.h', | 482 'store_buffer.h', |
| 481 'stub_code.cc', | 483 'stub_code.cc', |
| 482 'stub_code.h', | 484 'stub_code.h', |
| 483 'stub_code_arm.cc', | 485 'stub_code_arm.cc', |
| 484 'stub_code_arm_test.cc', | 486 'stub_code_arm_test.cc', |
| 485 'stub_code_arm64.cc', | 487 'stub_code_arm64.cc', |
| 486 'stub_code_arm64_test.cc', | 488 'stub_code_arm64_test.cc', |
| 487 'stub_code_dbc.cc', | 489 'stub_code_dbc.cc', |
| 488 'stub_code_ia32.cc', | 490 'stub_code_ia32.cc', |
| (...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 550 'visitor.h', | 552 'visitor.h', |
| 551 'weak_code.cc', | 553 'weak_code.cc', |
| 552 'weak_code.h', | 554 'weak_code.h', |
| 553 'weak_table.cc', | 555 'weak_table.cc', |
| 554 'weak_table.h', | 556 'weak_table.h', |
| 555 'zone.cc', | 557 'zone.cc', |
| 556 'zone.h', | 558 'zone.h', |
| 557 'zone_test.cc', | 559 'zone_test.cc', |
| 558 ], | 560 ], |
| 559 } | 561 } |
| OLD | NEW |