| 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 257 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 268 'native_message_handler.h', | 268 'native_message_handler.h', |
| 269 'native_symbol.h', | 269 'native_symbol.h', |
| 270 'native_symbol_android.cc', | 270 'native_symbol_android.cc', |
| 271 'native_symbol_linux.cc', | 271 'native_symbol_linux.cc', |
| 272 'native_symbol_macos.cc', | 272 'native_symbol_macos.cc', |
| 273 'native_symbol_win.cc', | 273 'native_symbol_win.cc', |
| 274 'object.cc', | 274 'object.cc', |
| 275 'object.h', | 275 'object.h', |
| 276 'object_arm_test.cc', | 276 'object_arm_test.cc', |
| 277 'object_arm64_test.cc', | 277 'object_arm64_test.cc', |
| 278 'object_graph.cc', |
| 279 'object_graph.h', |
| 280 'object_graph_test.cc', |
| 278 'object_ia32_test.cc', | 281 'object_ia32_test.cc', |
| 279 'object_id_ring.cc', | 282 'object_id_ring.cc', |
| 280 'object_id_ring.h', | 283 'object_id_ring.h', |
| 281 'object_id_ring_test.cc', | 284 'object_id_ring_test.cc', |
| 282 'object_mips_test.cc', | 285 'object_mips_test.cc', |
| 283 'object_set.h', | 286 'object_set.h', |
| 284 'object_store.cc', | 287 'object_store.cc', |
| 285 'object_store.h', | 288 'object_store.h', |
| 286 'object_store_test.cc', | 289 'object_store_test.cc', |
| 287 'object_test.cc', | 290 'object_test.cc', |
| (...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 417 'visitor.h', | 420 'visitor.h', |
| 418 'vtune.cc', | 421 'vtune.cc', |
| 419 'vtune.h', | 422 'vtune.h', |
| 420 'weak_table.cc', | 423 'weak_table.cc', |
| 421 'weak_table.h', | 424 'weak_table.h', |
| 422 'zone.cc', | 425 'zone.cc', |
| 423 'zone.h', | 426 'zone.h', |
| 424 'zone_test.cc', | 427 'zone_test.cc', |
| 425 ], | 428 ], |
| 426 } | 429 } |
| OLD | NEW |