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 137 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
148 'debugger_arm.cc', | 148 'debugger_arm.cc', |
149 'debugger_arm64.cc', | 149 'debugger_arm64.cc', |
150 'debugger_dbc.cc', | 150 'debugger_dbc.cc', |
151 'debugger_ia32.cc', | 151 'debugger_ia32.cc', |
152 'debugger_mips.cc', | 152 'debugger_mips.cc', |
153 'debugger_x64.cc', | 153 'debugger_x64.cc', |
154 'deferred_objects.cc', | 154 'deferred_objects.cc', |
155 'deferred_objects.h', | 155 'deferred_objects.h', |
156 'deopt_instructions.cc', | 156 'deopt_instructions.cc', |
157 'deopt_instructions.h', | 157 'deopt_instructions.h', |
| 158 'dev_fs.cc', |
| 159 'dev_fs.h', |
158 'disassembler.cc', | 160 'disassembler.cc', |
159 'disassembler.h', | 161 'disassembler.h', |
160 'disassembler_arm.cc', | 162 'disassembler_arm.cc', |
161 'disassembler_arm64.cc', | 163 'disassembler_arm64.cc', |
162 'disassembler_dbc.cc', | 164 'disassembler_dbc.cc', |
163 'disassembler_ia32.cc', | 165 'disassembler_ia32.cc', |
164 'disassembler_mips.cc', | 166 'disassembler_mips.cc', |
165 'disassembler_test.cc', | 167 'disassembler_test.cc', |
166 'disassembler_x64.cc', | 168 'disassembler_x64.cc', |
167 'double_conversion.cc', | 169 'double_conversion.cc', |
(...skipping 357 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
525 'visitor.h', | 527 'visitor.h', |
526 'weak_code.cc', | 528 'weak_code.cc', |
527 'weak_code.h', | 529 'weak_code.h', |
528 'weak_table.cc', | 530 'weak_table.cc', |
529 'weak_table.h', | 531 'weak_table.h', |
530 'zone.cc', | 532 'zone.cc', |
531 'zone.h', | 533 'zone.h', |
532 'zone_test.cc', | 534 'zone_test.cc', |
533 ], | 535 ], |
534 } | 536 } |
OLD | NEW |