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 157 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
168 'handles_test.cc', | 168 'handles_test.cc', |
169 'hash_map.h', | 169 'hash_map.h', |
170 'hash_map_test.cc', | 170 'hash_map_test.cc', |
171 'hash_set.h', | 171 'hash_set.h', |
172 'heap.cc', | 172 'heap.cc', |
173 'heap.h', | 173 'heap.h', |
174 'heap_profiler.cc', | 174 'heap_profiler.cc', |
175 'heap_profiler.h', | 175 'heap_profiler.h', |
176 'heap_profiler_test.cc', | 176 'heap_profiler_test.cc', |
177 'heap_test.cc', | 177 'heap_test.cc', |
178 'heap_trace.cc', | |
179 'heap_trace.h', | |
180 'heap_trace_test.cc', | |
181 'il_printer.cc', | 178 'il_printer.cc', |
182 'il_printer.h', | 179 'il_printer.h', |
183 'instructions.h', | 180 'instructions.h', |
184 'instructions_arm.cc', | 181 'instructions_arm.cc', |
185 'instructions_arm.h', | 182 'instructions_arm.h', |
186 'instructions_arm_test.cc', | 183 'instructions_arm_test.cc', |
187 'instructions_ia32.cc', | 184 'instructions_ia32.cc', |
188 'instructions_ia32.h', | 185 'instructions_ia32.h', |
189 'instructions_ia32_test.cc', | 186 'instructions_ia32_test.cc', |
190 'instructions_mips.cc', | 187 'instructions_mips.cc', |
(...skipping 144 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
335 'verifier.cc', | 332 'verifier.cc', |
336 'verifier.h', | 333 'verifier.h', |
337 'visitor.h', | 334 'visitor.h', |
338 'vtune.cc', | 335 'vtune.cc', |
339 'vtune.h', | 336 'vtune.h', |
340 'zone.cc', | 337 'zone.cc', |
341 'zone.h', | 338 'zone.h', |
342 'zone_test.cc', | 339 'zone_test.cc', |
343 ], | 340 ], |
344 } | 341 } |
OLD | NEW |