| 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 321 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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', | 336 'regexp_assembler.cc', |
| 337 'regexp_assembler.h', | 337 'regexp_assembler.h', |
| 338 'regexp_ast.cc', | 338 'regexp_ast.cc', |
| 339 'regexp_ast.h', | 339 'regexp_ast.h', |
| 340 'regexp_parser.cc', | 340 'regexp_parser.cc', |
| 341 'regexp_parser.h', | 341 'regexp_parser.h', |
| 342 'regexp_test.cc', |
| 342 'report.cc', | 343 'report.cc', |
| 343 'report.h', | 344 'report.h', |
| 344 'report_test.cc', | 345 'report_test.cc', |
| 345 'resolver.cc', | 346 'resolver.cc', |
| 346 'resolver.h', | 347 'resolver.h', |
| 347 'resolver_test.cc', | 348 'resolver_test.cc', |
| 348 'reusable_handles.h', | 349 'reusable_handles.h', |
| 349 'ring_buffer.h', | 350 'ring_buffer.h', |
| 350 'ring_buffer_test.cc', | 351 'ring_buffer_test.cc', |
| 351 'runtime_entry.h', | 352 'runtime_entry.h', |
| (...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 464 'vtune.h', | 465 'vtune.h', |
| 465 'weak_code.cc', | 466 'weak_code.cc', |
| 466 'weak_code.h', | 467 'weak_code.h', |
| 467 'weak_table.cc', | 468 'weak_table.cc', |
| 468 'weak_table.h', | 469 'weak_table.h', |
| 469 'zone.cc', | 470 'zone.cc', |
| 470 'zone.h', | 471 'zone.h', |
| 471 'zone_test.cc', | 472 'zone_test.cc', |
| 472 ], | 473 ], |
| 473 } | 474 } |
| OLD | NEW |