OLD | NEW |
1 # Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 # Copyright (c) 2012, 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 151 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
162 'handles_test.cc', | 162 'handles_test.cc', |
163 'hash_map.h', | 163 'hash_map.h', |
164 'hash_map_test.cc', | 164 'hash_map_test.cc', |
165 'hash_set.h', | 165 'hash_set.h', |
166 'heap.cc', | 166 'heap.cc', |
167 'heap.h', | 167 'heap.h', |
168 'heap_profiler.cc', | 168 'heap_profiler.cc', |
169 'heap_profiler.h', | 169 'heap_profiler.h', |
170 'heap_profiler_test.cc', | 170 'heap_profiler_test.cc', |
171 'heap_test.cc', | 171 'heap_test.cc', |
| 172 'heap_trace.cc', |
| 173 'heap_trace.h', |
| 174 'heap_trace_test.cc', |
172 'il_printer.cc', | 175 'il_printer.cc', |
173 'il_printer.h', | 176 'il_printer.h', |
174 'instructions.h', | 177 'instructions.h', |
175 'instructions_ia32.cc', | 178 'instructions_ia32.cc', |
176 'instructions_ia32.h', | 179 'instructions_ia32.h', |
177 'instructions_ia32_test.cc', | 180 'instructions_ia32_test.cc', |
178 'instructions_x64.cc', | 181 'instructions_x64.cc', |
179 'instructions_x64.h', | 182 'instructions_x64.h', |
180 'instructions_x64_test.cc', | 183 'instructions_x64_test.cc', |
181 'intermediate_language.cc', | 184 'intermediate_language.cc', |
(...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
306 'verifier.cc', | 309 'verifier.cc', |
307 'verifier.h', | 310 'verifier.h', |
308 'visitor.h', | 311 'visitor.h', |
309 'vtune.cc', | 312 'vtune.cc', |
310 'vtune.h', | 313 'vtune.h', |
311 'zone.cc', | 314 'zone.cc', |
312 'zone.h', | 315 'zone.h', |
313 'zone_test.cc', | 316 'zone_test.cc', |
314 ], | 317 ], |
315 } | 318 } |
OLD | NEW |