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 268 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
279 'runtime_entry_x64.cc', | 279 'runtime_entry_x64.cc', |
280 'runtime_entry_test.cc', | 280 'runtime_entry_test.cc', |
281 'scanner.cc', | 281 'scanner.cc', |
282 'scanner.h', | 282 'scanner.h', |
283 'scanner_test.cc', | 283 'scanner_test.cc', |
284 'scavenger.cc', | 284 'scavenger.cc', |
285 'scavenger.h', | 285 'scavenger.h', |
286 'scopes.cc', | 286 'scopes.cc', |
287 'scopes.h', | 287 'scopes.h', |
288 'scopes_test.cc', | 288 'scopes_test.cc', |
| 289 'simulator.h', |
| 290 'simulator_arm.cc', |
| 291 'simulator_arm.h', |
| 292 'simulator_mips.cc', |
| 293 'simulator_mips.h', |
289 'snapshot.cc', | 294 'snapshot.cc', |
290 'snapshot.h', | 295 'snapshot.h', |
291 'snapshot_ids.h', | 296 'snapshot_ids.h', |
292 'snapshot_test.cc', | 297 'snapshot_test.cc', |
293 'stack_frame.cc', | 298 'stack_frame.cc', |
294 'stack_frame_arm.cc', | 299 'stack_frame_arm.cc', |
295 'stack_frame_ia32.cc', | 300 'stack_frame_ia32.cc', |
296 'stack_frame_mips.cc', | 301 'stack_frame_mips.cc', |
297 'stack_frame_x64.cc', | 302 'stack_frame_x64.cc', |
298 'stack_frame.h', | 303 'stack_frame.h', |
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
337 'verifier.cc', | 342 'verifier.cc', |
338 'verifier.h', | 343 'verifier.h', |
339 'visitor.h', | 344 'visitor.h', |
340 'vtune.cc', | 345 'vtune.cc', |
341 'vtune.h', | 346 'vtune.h', |
342 'zone.cc', | 347 'zone.cc', |
343 'zone.h', | 348 'zone.h', |
344 'zone_test.cc', | 349 'zone_test.cc', |
345 ], | 350 ], |
346 } | 351 } |
OLD | NEW |