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 150 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
161 'gdbjit_linux.h', | 161 'gdbjit_linux.h', |
162 'globals.h', | 162 'globals.h', |
163 'growable_array.h', | 163 'growable_array.h', |
164 'growable_array_test.cc', | 164 'growable_array_test.cc', |
165 'handles.cc', | 165 'handles.cc', |
166 'handles.h', | 166 'handles.h', |
167 'handles_impl.h', | 167 'handles_impl.h', |
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', | |
172 'heap.cc', | 171 'heap.cc', |
173 'heap.h', | 172 'heap.h', |
174 'heap_profiler.cc', | 173 'heap_profiler.cc', |
175 'heap_profiler.h', | 174 'heap_profiler.h', |
176 'heap_profiler_test.cc', | 175 'heap_profiler_test.cc', |
177 'heap_test.cc', | 176 'heap_test.cc', |
178 'il_printer.cc', | 177 'il_printer.cc', |
179 'il_printer.h', | 178 'il_printer.h', |
180 'instructions.h', | 179 'instructions.h', |
181 'instructions_arm.cc', | 180 'instructions_arm.cc', |
(...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
332 'verifier.cc', | 331 'verifier.cc', |
333 'verifier.h', | 332 'verifier.h', |
334 'visitor.h', | 333 'visitor.h', |
335 'vtune.cc', | 334 'vtune.cc', |
336 'vtune.h', | 335 'vtune.h', |
337 'zone.cc', | 336 'zone.cc', |
338 'zone.h', | 337 'zone.h', |
339 'zone_test.cc', | 338 'zone_test.cc', |
340 ], | 339 ], |
341 } | 340 } |
OLD | NEW |