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 179 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
190 'intrinsifier_x64.cc', | 190 'intrinsifier_x64.cc', |
191 'isolate.cc', | 191 'isolate.cc', |
192 'isolate.h', | 192 'isolate.h', |
193 'isolate_test.cc', | 193 'isolate_test.cc', |
194 'json_test.cc', | 194 'json_test.cc', |
195 'locations.cc', | 195 'locations.cc', |
196 'locations.h', | 196 'locations.h', |
197 'longjump.cc', | 197 'longjump.cc', |
198 'longjump.h', | 198 'longjump.h', |
199 'longjump_test.cc', | 199 'longjump_test.cc', |
| 200 'megamorphic_cache_table.cc', |
| 201 'megamorphic_cache_table.h', |
200 'memory_region.cc', | 202 'memory_region.cc', |
201 'memory_region.h', | 203 'memory_region.h', |
202 'memory_region_test.cc', | 204 'memory_region_test.cc', |
203 'message.cc', | 205 'message.cc', |
204 'message.h', | 206 'message.h', |
205 'message_test.cc', | 207 'message_test.cc', |
206 'message_handler.cc', | 208 'message_handler.cc', |
207 'message_handler.h', | 209 'message_handler.h', |
208 'message_handler_test.cc', | 210 'message_handler_test.cc', |
209 'native_arguments.cc', | 211 'native_arguments.cc', |
(...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
304 'verifier.cc', | 306 'verifier.cc', |
305 'verifier.h', | 307 'verifier.h', |
306 'visitor.h', | 308 'visitor.h', |
307 'vtune.cc', | 309 'vtune.cc', |
308 'vtune.h', | 310 'vtune.h', |
309 'zone.cc', | 311 'zone.cc', |
310 'zone.h', | 312 'zone.h', |
311 'zone_test.cc', | 313 'zone_test.cc', |
312 ], | 314 ], |
313 } | 315 } |
OLD | NEW |