| 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 478 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 489 'timeline.h', | 489 'timeline.h', |
| 490 'timeline_analysis.cc', | 490 'timeline_analysis.cc', |
| 491 'timeline_analysis.h', | 491 'timeline_analysis.h', |
| 492 'timeline_test.cc', | 492 'timeline_test.cc', |
| 493 'timer.cc', | 493 'timer.cc', |
| 494 'timer.h', | 494 'timer.h', |
| 495 'token.cc', | 495 'token.cc', |
| 496 'token.h', | 496 'token.h', |
| 497 'token_position.cc', | 497 'token_position.cc', |
| 498 'token_position.h', | 498 'token_position.h', |
| 499 'type_table.h', |
| 499 'unibrow.cc', | 500 'unibrow.cc', |
| 500 'unibrow.h', | 501 'unibrow.h', |
| 501 'unibrow-inl.h', | 502 'unibrow-inl.h', |
| 502 'unicode.cc', | 503 'unicode.cc', |
| 503 'unicode.h', | 504 'unicode.h', |
| 504 'unicode_data.cc', | 505 'unicode_data.cc', |
| 505 'unicode_test.cc', | 506 'unicode_test.cc', |
| 506 'unit_test.cc', | 507 'unit_test.cc', |
| 507 'unit_test.h', | 508 'unit_test.h', |
| 508 'utils_test.cc', | 509 'utils_test.cc', |
| (...skipping 12 matching lines...) Expand all Loading... |
| 521 'visitor.h', | 522 'visitor.h', |
| 522 'weak_code.cc', | 523 'weak_code.cc', |
| 523 'weak_code.h', | 524 'weak_code.h', |
| 524 'weak_table.cc', | 525 'weak_table.cc', |
| 525 'weak_table.h', | 526 'weak_table.h', |
| 526 'zone.cc', | 527 'zone.cc', |
| 527 'zone.h', | 528 'zone.h', |
| 528 'zone_test.cc', | 529 'zone_test.cc', |
| 529 ], | 530 ], |
| 530 } | 531 } |
| OLD | NEW |