| 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 264 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 275 'runtime_entry_test.cc', | 275 'runtime_entry_test.cc', |
| 276 'runtime_entry_x64.cc', | 276 'runtime_entry_x64.cc', |
| 277 'scanner.cc', | 277 'scanner.cc', |
| 278 'scanner.h', | 278 'scanner.h', |
| 279 'scanner_test.cc', | 279 'scanner_test.cc', |
| 280 'scavenger.cc', | 280 'scavenger.cc', |
| 281 'scavenger.h', | 281 'scavenger.h', |
| 282 'scopes.cc', | 282 'scopes.cc', |
| 283 'scopes.h', | 283 'scopes.h', |
| 284 'scopes_test.cc', | 284 'scopes_test.cc', |
| 285 'service.cc', |
| 286 'service.h', |
| 285 'simulator.h', | 287 'simulator.h', |
| 286 'simulator_arm.cc', | 288 'simulator_arm.cc', |
| 287 'simulator_arm.h', | 289 'simulator_arm.h', |
| 288 'simulator_mips.cc', | 290 'simulator_mips.cc', |
| 289 'simulator_mips.h', | 291 'simulator_mips.h', |
| 290 'snapshot.cc', | 292 'snapshot.cc', |
| 291 'snapshot.h', | 293 'snapshot.h', |
| 292 'snapshot_ids.h', | 294 'snapshot_ids.h', |
| 293 'snapshot_test.cc', | 295 'snapshot_test.cc', |
| 294 'stack_frame.cc', | 296 'stack_frame.cc', |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 340 'visitor.h', | 342 'visitor.h', |
| 341 'vtune.cc', | 343 'vtune.cc', |
| 342 'vtune.h', | 344 'vtune.h', |
| 343 'weak_table.cc', | 345 'weak_table.cc', |
| 344 'weak_table.h', | 346 'weak_table.h', |
| 345 'zone.cc', | 347 'zone.cc', |
| 346 'zone.h', | 348 'zone.h', |
| 347 'zone_test.cc', | 349 'zone_test.cc', |
| 348 ], | 350 ], |
| 349 } | 351 } |
| OLD | NEW |