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 333 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
344 'profiler.h', | 344 'profiler.h', |
345 'random.cc', | 345 'random.cc', |
346 'random.h', | 346 'random.h', |
347 'raw_object.cc', | 347 'raw_object.cc', |
348 'raw_object.h', | 348 'raw_object.h', |
349 'raw_object_snapshot.cc', | 349 'raw_object_snapshot.cc', |
350 'regexp.cc', | 350 'regexp.cc', |
351 'regexp.h', | 351 'regexp.h', |
352 'regexp_assembler.cc', | 352 'regexp_assembler.cc', |
353 'regexp_assembler.h', | 353 'regexp_assembler.h', |
| 354 'regexp_assembler_bytecode.cc', |
| 355 'regexp_assembler_bytecode.h', |
| 356 'regexp_assembler_bytecode_inl.h', |
| 357 'regexp_assembler_ir.cc', |
| 358 'regexp_assembler_ir.h', |
354 'regexp_ast.cc', | 359 'regexp_ast.cc', |
355 'regexp_ast.h', | 360 'regexp_ast.h', |
| 361 'regexp_bytecodes.h', |
| 362 'regexp_interpreter.cc', |
| 363 'regexp_interpreter.h', |
356 'regexp_parser.cc', | 364 'regexp_parser.cc', |
357 'regexp_parser.h', | 365 'regexp_parser.h', |
358 'regexp_test.cc', | 366 'regexp_test.cc', |
359 'report.cc', | 367 'report.cc', |
360 'report.h', | 368 'report.h', |
361 'report_test.cc', | 369 'report_test.cc', |
362 'resolver.cc', | 370 'resolver.cc', |
363 'resolver.h', | 371 'resolver.h', |
364 'resolver_test.cc', | 372 'resolver_test.cc', |
365 'reusable_handles.h', | 373 'reusable_handles.h', |
(...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
482 'vtune.h', | 490 'vtune.h', |
483 'weak_code.cc', | 491 'weak_code.cc', |
484 'weak_code.h', | 492 'weak_code.h', |
485 'weak_table.cc', | 493 'weak_table.cc', |
486 'weak_table.h', | 494 'weak_table.h', |
487 'zone.cc', | 495 'zone.cc', |
488 'zone.h', | 496 'zone.h', |
489 'zone_test.cc', | 497 'zone_test.cc', |
490 ], | 498 ], |
491 } | 499 } |
OLD | NEW |