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 488 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
499 'type_table.h', | 499 'type_table.h', |
500 'unibrow.cc', | 500 'unibrow.cc', |
501 'unibrow.h', | 501 'unibrow.h', |
502 'unibrow-inl.h', | 502 'unibrow-inl.h', |
503 'unicode.cc', | 503 'unicode.cc', |
504 'unicode.h', | 504 'unicode.h', |
505 'unicode_data.cc', | 505 'unicode_data.cc', |
506 'unicode_test.cc', | 506 'unicode_test.cc', |
507 'unit_test.cc', | 507 'unit_test.cc', |
508 'unit_test.h', | 508 'unit_test.h', |
| 509 'uri.cc', |
| 510 'uri.h', |
| 511 'uri_test.cc', |
509 'utils_test.cc', | 512 'utils_test.cc', |
510 'verified_memory.cc', | 513 'verified_memory.cc', |
511 'verified_memory.h', | 514 'verified_memory.h', |
512 'verified_memory_test.cc', | 515 'verified_memory_test.cc', |
513 'verifier.cc', | 516 'verifier.cc', |
514 'verifier.h', | 517 'verifier.h', |
515 'virtual_memory.cc', | 518 'virtual_memory.cc', |
516 'virtual_memory.h', | 519 'virtual_memory.h', |
517 'virtual_memory_android.cc', | 520 'virtual_memory_android.cc', |
518 'virtual_memory_linux.cc', | 521 'virtual_memory_linux.cc', |
519 'virtual_memory_macos.cc', | 522 'virtual_memory_macos.cc', |
520 'virtual_memory_test.cc', | 523 'virtual_memory_test.cc', |
521 'virtual_memory_win.cc', | 524 'virtual_memory_win.cc', |
522 'visitor.h', | 525 'visitor.h', |
523 'weak_code.cc', | 526 'weak_code.cc', |
524 'weak_code.h', | 527 'weak_code.h', |
525 'weak_table.cc', | 528 'weak_table.cc', |
526 'weak_table.h', | 529 'weak_table.h', |
527 'zone.cc', | 530 'zone.cc', |
528 'zone.h', | 531 'zone.h', |
529 'zone_test.cc', | 532 'zone_test.cc', |
530 ], | 533 ], |
531 } | 534 } |
OLD | NEW |