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 142 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
153 'debugger_arm.cc', | 153 'debugger_arm.cc', |
154 'debugger_arm64.cc', | 154 'debugger_arm64.cc', |
155 'debugger_dbc.cc', | 155 'debugger_dbc.cc', |
156 'debugger_ia32.cc', | 156 'debugger_ia32.cc', |
157 'debugger_mips.cc', | 157 'debugger_mips.cc', |
158 'debugger_x64.cc', | 158 'debugger_x64.cc', |
159 'deferred_objects.cc', | 159 'deferred_objects.cc', |
160 'deferred_objects.h', | 160 'deferred_objects.h', |
161 'deopt_instructions.cc', | 161 'deopt_instructions.cc', |
162 'deopt_instructions.h', | 162 'deopt_instructions.h', |
163 'dev_fs.cc', | |
164 'dev_fs.h', | |
165 'disassembler.cc', | 163 'disassembler.cc', |
166 'disassembler.h', | 164 'disassembler.h', |
167 'disassembler_arm.cc', | 165 'disassembler_arm.cc', |
168 'disassembler_arm64.cc', | 166 'disassembler_arm64.cc', |
169 'disassembler_dbc.cc', | 167 'disassembler_dbc.cc', |
170 'disassembler_ia32.cc', | 168 'disassembler_ia32.cc', |
171 'disassembler_mips.cc', | 169 'disassembler_mips.cc', |
172 'disassembler_test.cc', | 170 'disassembler_test.cc', |
173 'disassembler_x64.cc', | 171 'disassembler_x64.cc', |
174 'double_conversion.cc', | 172 'double_conversion.cc', |
(...skipping 361 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
536 'visitor.h', | 534 'visitor.h', |
537 'weak_code.cc', | 535 'weak_code.cc', |
538 'weak_code.h', | 536 'weak_code.h', |
539 'weak_table.cc', | 537 'weak_table.cc', |
540 'weak_table.h', | 538 'weak_table.h', |
541 'zone.cc', | 539 'zone.cc', |
542 'zone.h', | 540 'zone.h', |
543 'zone_test.cc', | 541 'zone_test.cc', |
544 ], | 542 ], |
545 } | 543 } |
OLD | NEW |