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 315 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
326 'profiler.cc', | 326 'profiler.cc', |
327 'profiler.h', | 327 'profiler.h', |
328 'profiler_test.cc', | 328 'profiler_test.cc', |
329 'random.cc', | 329 'random.cc', |
330 'random.h', | 330 'random.h', |
331 'raw_object.cc', | 331 'raw_object.cc', |
332 'raw_object.h', | 332 'raw_object.h', |
333 'raw_object_snapshot.cc', | 333 'raw_object_snapshot.cc', |
334 'regexp.cc', | 334 'regexp.cc', |
335 'regexp.h', | 335 'regexp.h', |
| 336 'regexp_assembler.cc', |
| 337 'regexp_assembler.h', |
336 'regexp_ast.cc', | 338 'regexp_ast.cc', |
337 'regexp_ast.h', | 339 'regexp_ast.h', |
338 'regexp_parser.cc', | 340 'regexp_parser.cc', |
339 'regexp_parser.h', | 341 'regexp_parser.h', |
340 'report.cc', | 342 'report.cc', |
341 'report.h', | 343 'report.h', |
342 'report_test.cc', | 344 'report_test.cc', |
343 'resolver.cc', | 345 'resolver.cc', |
344 'resolver.h', | 346 'resolver.h', |
345 'resolver_test.cc', | 347 'resolver_test.cc', |
(...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
457 'visitor.h', | 459 'visitor.h', |
458 'vtune.cc', | 460 'vtune.cc', |
459 'vtune.h', | 461 'vtune.h', |
460 'weak_table.cc', | 462 'weak_table.cc', |
461 'weak_table.h', | 463 'weak_table.h', |
462 'zone.cc', | 464 'zone.cc', |
463 'zone.h', | 465 'zone.h', |
464 'zone_test.cc', | 466 'zone_test.cc', |
465 ], | 467 ], |
466 } | 468 } |
OLD | NEW |