| 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 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 56 'bitmap.cc', | 56 'bitmap.cc', |
| 57 'bitmap.h', | 57 'bitmap.h', |
| 58 'bitmap_test.cc', | 58 'bitmap_test.cc', |
| 59 'block_scheduler.cc', | 59 'block_scheduler.cc', |
| 60 'block_scheduler.h', | 60 'block_scheduler.h', |
| 61 'boolfield.h', | 61 'boolfield.h', |
| 62 'boolfield_test.cc', | 62 'boolfield_test.cc', |
| 63 'bootstrap.h', | 63 'bootstrap.h', |
| 64 'bootstrap_natives.cc', | 64 'bootstrap_natives.cc', |
| 65 'bootstrap_natives.h', | 65 'bootstrap_natives.h', |
| 66 'branch_optimizer.cc', |
| 67 'branch_optimizer.h', |
| 66 'cha.cc', | 68 'cha.cc', |
| 67 'cha.h', | 69 'cha.h', |
| 68 'cha_test.cc', | 70 'cha_test.cc', |
| 69 'class_finalizer.cc', | 71 'class_finalizer.cc', |
| 70 'class_finalizer.h', | 72 'class_finalizer.h', |
| 71 'class_finalizer_test.cc', | 73 'class_finalizer_test.cc', |
| 72 'class_table.cc', | 74 'class_table.cc', |
| 73 'class_table.h', | 75 'class_table.h', |
| 74 'code_descriptors.cc', | 76 'code_descriptors.cc', |
| 75 'code_descriptors.h', | 77 'code_descriptors.h', |
| (...skipping 433 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 509 'vtune.h', | 511 'vtune.h', |
| 510 'weak_code.cc', | 512 'weak_code.cc', |
| 511 'weak_code.h', | 513 'weak_code.h', |
| 512 'weak_table.cc', | 514 'weak_table.cc', |
| 513 'weak_table.h', | 515 'weak_table.h', |
| 514 'zone.cc', | 516 'zone.cc', |
| 515 'zone.h', | 517 'zone.h', |
| 516 'zone_test.cc', | 518 'zone_test.cc', |
| 517 ], | 519 ], |
| 518 } | 520 } |
| OLD | NEW |