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 337 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
348 'profiler_service.cc', | 348 'profiler_service.cc', |
349 'profiler_service.h', | 349 'profiler_service.h', |
350 'profiler_test.cc', | 350 'profiler_test.cc', |
351 'profiler.cc', | 351 'profiler.cc', |
352 'profiler.h', | 352 'profiler.h', |
353 'random.cc', | 353 'random.cc', |
354 'random.h', | 354 'random.h', |
355 'raw_object.cc', | 355 'raw_object.cc', |
356 'raw_object.h', | 356 'raw_object.h', |
357 'raw_object_snapshot.cc', | 357 'raw_object_snapshot.cc', |
| 358 'redundancy_elimination.cc', |
| 359 'redundancy_elimination.h', |
358 'regexp.cc', | 360 'regexp.cc', |
359 'regexp.h', | 361 'regexp.h', |
360 'regexp_assembler.cc', | 362 'regexp_assembler.cc', |
361 'regexp_assembler.h', | 363 'regexp_assembler.h', |
362 'regexp_assembler_bytecode.cc', | 364 'regexp_assembler_bytecode.cc', |
363 'regexp_assembler_bytecode.h', | 365 'regexp_assembler_bytecode.h', |
364 'regexp_assembler_bytecode_inl.h', | 366 'regexp_assembler_bytecode_inl.h', |
365 'regexp_assembler_ir.cc', | 367 'regexp_assembler_ir.cc', |
366 'regexp_assembler_ir.h', | 368 'regexp_assembler_ir.h', |
367 'regexp_ast.cc', | 369 'regexp_ast.cc', |
(...skipping 143 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
511 'vtune.h', | 513 'vtune.h', |
512 'weak_code.cc', | 514 'weak_code.cc', |
513 'weak_code.h', | 515 'weak_code.h', |
514 'weak_table.cc', | 516 'weak_table.cc', |
515 'weak_table.h', | 517 'weak_table.h', |
516 'zone.cc', | 518 'zone.cc', |
517 'zone.h', | 519 'zone.h', |
518 'zone_test.cc', | 520 'zone_test.cc', |
519 ], | 521 ], |
520 } | 522 } |
OLD | NEW |