| 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 286 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 297 'native_message_handler.h', | 297 'native_message_handler.h', |
| 298 'native_symbol.h', | 298 'native_symbol.h', |
| 299 'native_symbol_android.cc', | 299 'native_symbol_android.cc', |
| 300 'native_symbol_linux.cc', | 300 'native_symbol_linux.cc', |
| 301 'native_symbol_macos.cc', | 301 'native_symbol_macos.cc', |
| 302 'native_symbol_win.cc', | 302 'native_symbol_win.cc', |
| 303 'object.cc', | 303 'object.cc', |
| 304 'object.h', | 304 'object.h', |
| 305 'object_arm_test.cc', | 305 'object_arm_test.cc', |
| 306 'object_arm64_test.cc', | 306 'object_arm64_test.cc', |
| 307 'object_dbc_test.cc', |
| 307 'object_graph.cc', | 308 'object_graph.cc', |
| 308 'object_graph.h', | 309 'object_graph.h', |
| 309 'object_graph_test.cc', | 310 'object_graph_test.cc', |
| 310 'object_ia32_test.cc', | 311 'object_ia32_test.cc', |
| 311 'object_id_ring.cc', | 312 'object_id_ring.cc', |
| 312 'object_id_ring.h', | 313 'object_id_ring.h', |
| 313 'object_id_ring_test.cc', | 314 'object_id_ring_test.cc', |
| 314 'object_mips_test.cc', | 315 'object_mips_test.cc', |
| 315 'object_service.cc', | 316 'object_service.cc', |
| 316 'object_set.h', | 317 'object_set.h', |
| (...skipping 197 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 514 'visitor.h', | 515 'visitor.h', |
| 515 'weak_code.cc', | 516 'weak_code.cc', |
| 516 'weak_code.h', | 517 'weak_code.h', |
| 517 'weak_table.cc', | 518 'weak_table.cc', |
| 518 'weak_table.h', | 519 'weak_table.h', |
| 519 'zone.cc', | 520 'zone.cc', |
| 520 'zone.h', | 521 'zone.h', |
| 521 'zone_test.cc', | 522 'zone_test.cc', |
| 522 ], | 523 ], |
| 523 } | 524 } |
| OLD | NEW |