| 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 493 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 504 'thread_pool.cc', | 504 'thread_pool.cc', |
| 505 'thread_pool.h', | 505 'thread_pool.h', |
| 506 'thread_pool_test.cc', | 506 'thread_pool_test.cc', |
| 507 'thread_registry.cc', | 507 'thread_registry.cc', |
| 508 'thread_registry.h', | 508 'thread_registry.h', |
| 509 'thread_test.cc', | 509 'thread_test.cc', |
| 510 'timeline.cc', | 510 'timeline.cc', |
| 511 'timeline.h', | 511 'timeline.h', |
| 512 'timeline_analysis.cc', | 512 'timeline_analysis.cc', |
| 513 'timeline_analysis.h', | 513 'timeline_analysis.h', |
| 514 'timeline_android.cc', |
| 515 'timeline_fuchsia.cc', |
| 516 'timeline_linux.cc', |
| 517 'timeline_macos.cc', |
| 514 'timeline_test.cc', | 518 'timeline_test.cc', |
| 519 'timeline_win.cc', |
| 515 'timer.cc', | 520 'timer.cc', |
| 516 'timer.h', | 521 'timer.h', |
| 517 'token.cc', | 522 'token.cc', |
| 518 'token.h', | 523 'token.h', |
| 519 'token_position.cc', | 524 'token_position.cc', |
| 520 'token_position.h', | 525 'token_position.h', |
| 521 'type_table.h', | 526 'type_table.h', |
| 522 'unibrow.cc', | 527 'unibrow.cc', |
| 523 'unibrow.h', | 528 'unibrow.h', |
| 524 'unibrow-inl.h', | 529 'unibrow-inl.h', |
| (...skipping 22 matching lines...) Expand all Loading... |
| 547 'weak_code.h', | 552 'weak_code.h', |
| 548 'weak_table.cc', | 553 'weak_table.cc', |
| 549 'weak_table.h', | 554 'weak_table.h', |
| 550 'zone.cc', | 555 'zone.cc', |
| 551 'zone.h', | 556 'zone.h', |
| 552 'zone_test.cc', | 557 'zone_test.cc', |
| 553 'zone_text_buffer.cc', | 558 'zone_text_buffer.cc', |
| 554 'zone_text_buffer.h', | 559 'zone_text_buffer.h', |
| 555 ], | 560 ], |
| 556 } | 561 } |
| OLD | NEW |