| 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 298 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 309 'proccpuinfo.h', | 309 'proccpuinfo.h', |
| 310 'proccpuinfo.cc', | 310 'proccpuinfo.cc', |
| 311 'profiler.cc', | 311 'profiler.cc', |
| 312 'profiler.h', | 312 'profiler.h', |
| 313 'profiler_test.cc', | 313 'profiler_test.cc', |
| 314 'random.cc', | 314 'random.cc', |
| 315 'random.h', | 315 'random.h', |
| 316 'raw_object.cc', | 316 'raw_object.cc', |
| 317 'raw_object.h', | 317 'raw_object.h', |
| 318 'raw_object_snapshot.cc', | 318 'raw_object_snapshot.cc', |
| 319 'report.cc', |
| 320 'report.h', |
| 321 'report_test.cc', |
| 319 'resolver.cc', | 322 'resolver.cc', |
| 320 'resolver.h', | 323 'resolver.h', |
| 321 'resolver_test.cc', | 324 'resolver_test.cc', |
| 322 'reusable_handles.h', | 325 'reusable_handles.h', |
| 323 'ring_buffer.h', | 326 'ring_buffer.h', |
| 324 'ring_buffer_test.cc', | 327 'ring_buffer_test.cc', |
| 325 'runtime_entry.h', | 328 'runtime_entry.h', |
| 326 'runtime_entry_arm.cc', | 329 'runtime_entry_arm.cc', |
| 327 'runtime_entry_arm64.cc', | 330 'runtime_entry_arm64.cc', |
| 328 'runtime_entry_ia32.cc', | 331 'runtime_entry_ia32.cc', |
| (...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 422 'visitor.h', | 425 'visitor.h', |
| 423 'vtune.cc', | 426 'vtune.cc', |
| 424 'vtune.h', | 427 'vtune.h', |
| 425 'weak_table.cc', | 428 'weak_table.cc', |
| 426 'weak_table.h', | 429 'weak_table.h', |
| 427 'zone.cc', | 430 'zone.cc', |
| 428 'zone.h', | 431 'zone.h', |
| 429 'zone_test.cc', | 432 'zone_test.cc', |
| 430 ], | 433 ], |
| 431 } | 434 } |
| OLD | NEW |