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 358 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
369 'regexp_ast.cc', | 369 'regexp_ast.cc', |
370 'regexp_ast.h', | 370 'regexp_ast.h', |
371 'regexp_bytecodes.h', | 371 'regexp_bytecodes.h', |
372 'regexp_interpreter.cc', | 372 'regexp_interpreter.cc', |
373 'regexp_interpreter.h', | 373 'regexp_interpreter.h', |
374 'regexp_parser.cc', | 374 'regexp_parser.cc', |
375 'regexp_parser.h', | 375 'regexp_parser.h', |
376 'regexp_test.cc', | 376 'regexp_test.cc', |
377 'report.cc', | 377 'report.cc', |
378 'report.h', | 378 'report.h', |
379 'report_test.cc', | |
380 'resolver.cc', | 379 'resolver.cc', |
381 'resolver.h', | 380 'resolver.h', |
382 'resolver_test.cc', | 381 'resolver_test.cc', |
383 'reusable_handles.h', | 382 'reusable_handles.h', |
384 'ring_buffer.h', | 383 'ring_buffer.h', |
385 'ring_buffer_test.cc', | 384 'ring_buffer_test.cc', |
386 'runtime_entry.h', | 385 'runtime_entry.h', |
387 'runtime_entry_list.h', | 386 'runtime_entry_list.h', |
388 'runtime_entry_arm.cc', | 387 'runtime_entry_arm.cc', |
389 'runtime_entry_arm64.cc', | 388 'runtime_entry_arm64.cc', |
(...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
513 'vtune.h', | 512 'vtune.h', |
514 'weak_code.cc', | 513 'weak_code.cc', |
515 'weak_code.h', | 514 'weak_code.h', |
516 'weak_table.cc', | 515 'weak_table.cc', |
517 'weak_table.h', | 516 'weak_table.h', |
518 'zone.cc', | 517 'zone.cc', |
519 'zone.h', | 518 'zone.h', |
520 'zone_test.cc', | 519 'zone_test.cc', |
521 ], | 520 ], |
522 } | 521 } |
OLD | NEW |