| 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 289 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 300 'object_arm_test.cc', | 300 'object_arm_test.cc', |
| 301 'object_arm64_test.cc', | 301 'object_arm64_test.cc', |
| 302 'object_graph.cc', | 302 'object_graph.cc', |
| 303 'object_graph.h', | 303 'object_graph.h', |
| 304 'object_graph_test.cc', | 304 'object_graph_test.cc', |
| 305 'object_ia32_test.cc', | 305 'object_ia32_test.cc', |
| 306 'object_id_ring.cc', | 306 'object_id_ring.cc', |
| 307 'object_id_ring.h', | 307 'object_id_ring.h', |
| 308 'object_id_ring_test.cc', | 308 'object_id_ring_test.cc', |
| 309 'object_mips_test.cc', | 309 'object_mips_test.cc', |
| 310 'object_service.cc', |
| 310 'object_set.h', | 311 'object_set.h', |
| 311 'object_store.cc', | 312 'object_store.cc', |
| 312 'object_store.h', | 313 'object_store.h', |
| 313 'object_store_test.cc', | 314 'object_store_test.cc', |
| 314 'object_test.cc', | 315 'object_test.cc', |
| 315 'object_x64_test.cc', | 316 'object_x64_test.cc', |
| 316 'os.h', | 317 'os.h', |
| 317 'os_android.cc', | 318 'os_android.cc', |
| 318 'os_linux.cc', | 319 'os_linux.cc', |
| 319 'os_macos.cc', | 320 'os_macos.cc', |
| (...skipping 188 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 508 'vtune.h', | 509 'vtune.h', |
| 509 'weak_code.cc', | 510 'weak_code.cc', |
| 510 'weak_code.h', | 511 'weak_code.h', |
| 511 'weak_table.cc', | 512 'weak_table.cc', |
| 512 'weak_table.h', | 513 'weak_table.h', |
| 513 'zone.cc', | 514 'zone.cc', |
| 514 'zone.h', | 515 'zone.h', |
| 515 'zone_test.cc', | 516 'zone_test.cc', |
| 516 ], | 517 ], |
| 517 } | 518 } |
| OLD | NEW |