| 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 249 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 260 'parser_test.cc', | 260 'parser_test.cc', |
| 261 'port.cc', | 261 'port.cc', |
| 262 'port.h', | 262 'port.h', |
| 263 'port_test.cc', | 263 'port_test.cc', |
| 264 'raw_object.cc', | 264 'raw_object.cc', |
| 265 'raw_object.h', | 265 'raw_object.h', |
| 266 'raw_object_snapshot.cc', | 266 'raw_object_snapshot.cc', |
| 267 'resolver.cc', | 267 'resolver.cc', |
| 268 'resolver.h', | 268 'resolver.h', |
| 269 'resolver_test.cc', | 269 'resolver_test.cc', |
| 270 'reusable_handles.h', |
| 270 'runtime_entry.h', | 271 'runtime_entry.h', |
| 271 'runtime_entry_arm.cc', | 272 'runtime_entry_arm.cc', |
| 272 'runtime_entry_ia32.cc', | 273 'runtime_entry_ia32.cc', |
| 273 'runtime_entry_mips.cc', | 274 'runtime_entry_mips.cc', |
| 274 'runtime_entry_test.cc', | 275 'runtime_entry_test.cc', |
| 275 'runtime_entry_x64.cc', | 276 'runtime_entry_x64.cc', |
| 276 'scanner.cc', | 277 'scanner.cc', |
| 277 'scanner.h', | 278 'scanner.h', |
| 278 'scanner_test.cc', | 279 'scanner_test.cc', |
| 279 'scavenger.cc', | 280 'scavenger.cc', |
| (...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 341 'visitor.h', | 342 'visitor.h', |
| 342 'vtune.cc', | 343 'vtune.cc', |
| 343 'vtune.h', | 344 'vtune.h', |
| 344 'weak_table.cc', | 345 'weak_table.cc', |
| 345 'weak_table.h', | 346 'weak_table.h', |
| 346 'zone.cc', | 347 'zone.cc', |
| 347 'zone.h', | 348 'zone.h', |
| 348 'zone_test.cc', | 349 'zone_test.cc', |
| 349 ], | 350 ], |
| 350 } | 351 } |
| OLD | NEW |