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 149 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
160 'handles_test.cc', | 160 'handles_test.cc', |
161 'hash_map.h', | 161 'hash_map.h', |
162 'hash_map_test.cc', | 162 'hash_map_test.cc', |
163 'hash_set.h', | 163 'hash_set.h', |
164 'heap.cc', | 164 'heap.cc', |
165 'heap.h', | 165 'heap.h', |
166 'heap_profiler.cc', | 166 'heap_profiler.cc', |
167 'heap_profiler.h', | 167 'heap_profiler.h', |
168 'heap_profiler_test.cc', | 168 'heap_profiler_test.cc', |
169 'heap_test.cc', | 169 'heap_test.cc', |
| 170 'heap_trace.cc', |
| 171 'heap_trace.h', |
| 172 'heap_trace_test.cc', |
170 'il_printer.cc', | 173 'il_printer.cc', |
171 'il_printer.h', | 174 'il_printer.h', |
172 'instructions.h', | 175 'instructions.h', |
173 'instructions_ia32.cc', | 176 'instructions_ia32.cc', |
174 'instructions_ia32.h', | 177 'instructions_ia32.h', |
175 'instructions_ia32_test.cc', | 178 'instructions_ia32_test.cc', |
176 'instructions_x64.cc', | 179 'instructions_x64.cc', |
177 'instructions_x64.h', | 180 'instructions_x64.h', |
178 'instructions_x64_test.cc', | 181 'instructions_x64_test.cc', |
179 'intermediate_language.cc', | 182 'intermediate_language.cc', |
(...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
300 'virtual_memory_test.cc', | 303 'virtual_memory_test.cc', |
301 'virtual_memory_win.cc', | 304 'virtual_memory_win.cc', |
302 'verifier.cc', | 305 'verifier.cc', |
303 'verifier.h', | 306 'verifier.h', |
304 'visitor.h', | 307 'visitor.h', |
305 'zone.cc', | 308 'zone.cc', |
306 'zone.h', | 309 'zone.h', |
307 'zone_test.cc', | 310 'zone_test.cc', |
308 ], | 311 ], |
309 } | 312 } |
OLD | NEW |