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 472 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
483 'timeline.h', | 483 'timeline.h', |
484 'timeline_analysis.cc', | 484 'timeline_analysis.cc', |
485 'timeline_analysis.h', | 485 'timeline_analysis.h', |
486 'timeline_test.cc', | 486 'timeline_test.cc', |
487 'timer.cc', | 487 'timer.cc', |
488 'timer.h', | 488 'timer.h', |
489 'token.cc', | 489 'token.cc', |
490 'token.h', | 490 'token.h', |
491 'token_position.cc', | 491 'token_position.cc', |
492 'token_position.h', | 492 'token_position.h', |
| 493 'type_table.h', |
493 'unibrow.cc', | 494 'unibrow.cc', |
494 'unibrow.h', | 495 'unibrow.h', |
495 'unibrow-inl.h', | 496 'unibrow-inl.h', |
496 'unicode.cc', | 497 'unicode.cc', |
497 'unicode.h', | 498 'unicode.h', |
498 'unicode_data.cc', | 499 'unicode_data.cc', |
499 'unicode_test.cc', | 500 'unicode_test.cc', |
500 'unit_test.cc', | 501 'unit_test.cc', |
501 'unit_test.h', | 502 'unit_test.h', |
502 'utils_test.cc', | 503 'utils_test.cc', |
(...skipping 12 matching lines...) Expand all Loading... |
515 'visitor.h', | 516 'visitor.h', |
516 'weak_code.cc', | 517 'weak_code.cc', |
517 'weak_code.h', | 518 'weak_code.h', |
518 'weak_table.cc', | 519 'weak_table.cc', |
519 'weak_table.h', | 520 'weak_table.h', |
520 'zone.cc', | 521 'zone.cc', |
521 'zone.h', | 522 'zone.h', |
522 'zone_test.cc', | 523 'zone_test.cc', |
523 ], | 524 ], |
524 } | 525 } |
OLD | NEW |