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 139 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
150 'disassembler.h', | 150 'disassembler.h', |
151 'disassembler_arm.cc', | 151 'disassembler_arm.cc', |
152 'disassembler_arm64.cc', | 152 'disassembler_arm64.cc', |
153 'disassembler_ia32.cc', | 153 'disassembler_ia32.cc', |
154 'disassembler_mips.cc', | 154 'disassembler_mips.cc', |
155 'disassembler_test.cc', | 155 'disassembler_test.cc', |
156 'disassembler_x64.cc', | 156 'disassembler_x64.cc', |
157 'double_conversion.cc', | 157 'double_conversion.cc', |
158 'double_conversion.h', | 158 'double_conversion.h', |
159 'double_internals.h', | 159 'double_internals.h', |
| 160 'elfgen.h', |
160 'exceptions.cc', | 161 'exceptions.cc', |
161 'exceptions.h', | 162 'exceptions.h', |
162 'exceptions_test.cc', | 163 'exceptions_test.cc', |
163 'find_code_object_test.cc', | 164 'find_code_object_test.cc', |
164 'flags.cc', | 165 'flags.cc', |
165 'flags.h', | 166 'flags.h', |
166 'flags_test.cc', | 167 'flags_test.cc', |
167 'flow_graph.cc', | 168 'flow_graph.cc', |
168 'flow_graph.h', | 169 'flow_graph.h', |
169 'flow_graph_allocator.cc', | 170 'flow_graph_allocator.cc', |
(...skipping 258 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
428 'visitor.h', | 429 'visitor.h', |
429 'vtune.cc', | 430 'vtune.cc', |
430 'vtune.h', | 431 'vtune.h', |
431 'weak_table.cc', | 432 'weak_table.cc', |
432 'weak_table.h', | 433 'weak_table.h', |
433 'zone.cc', | 434 'zone.cc', |
434 'zone.h', | 435 'zone.h', |
435 'zone_test.cc', | 436 'zone_test.cc', |
436 ], | 437 ], |
437 } | 438 } |
OLD | NEW |