| 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 297 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 308 'profiler_test.cc', | 308 'profiler_test.cc', |
| 309 'random.cc', | 309 'random.cc', |
| 310 'random.h', | 310 'random.h', |
| 311 'raw_object.cc', | 311 'raw_object.cc', |
| 312 'raw_object.h', | 312 'raw_object.h', |
| 313 'raw_object_snapshot.cc', | 313 'raw_object_snapshot.cc', |
| 314 'resolver.cc', | 314 'resolver.cc', |
| 315 'resolver.h', | 315 'resolver.h', |
| 316 'resolver_test.cc', | 316 'resolver_test.cc', |
| 317 'reusable_handles.h', | 317 'reusable_handles.h', |
| 318 'ring_buffer.h', |
| 319 'ring_buffer_test.cc', |
| 318 'runtime_entry.h', | 320 'runtime_entry.h', |
| 319 'runtime_entry_arm.cc', | 321 'runtime_entry_arm.cc', |
| 320 'runtime_entry_arm64.cc', | 322 'runtime_entry_arm64.cc', |
| 321 'runtime_entry_ia32.cc', | 323 'runtime_entry_ia32.cc', |
| 322 'runtime_entry_mips.cc', | 324 'runtime_entry_mips.cc', |
| 323 'runtime_entry_test.cc', | 325 'runtime_entry_test.cc', |
| 324 'runtime_entry_x64.cc', | 326 'runtime_entry_x64.cc', |
| 325 'scanner.cc', | 327 'scanner.cc', |
| 326 'scanner.h', | 328 'scanner.h', |
| 327 'scanner_test.cc', | 329 'scanner_test.cc', |
| (...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 414 'visitor.h', | 416 'visitor.h', |
| 415 'vtune.cc', | 417 'vtune.cc', |
| 416 'vtune.h', | 418 'vtune.h', |
| 417 'weak_table.cc', | 419 'weak_table.cc', |
| 418 'weak_table.h', | 420 'weak_table.h', |
| 419 'zone.cc', | 421 'zone.cc', |
| 420 'zone.h', | 422 'zone.h', |
| 421 'zone_test.cc', | 423 'zone_test.cc', |
| 422 ], | 424 ], |
| 423 } | 425 } |
| OLD | NEW |