| 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 253 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 264 'megamorphic_cache_table.h', | 264 'megamorphic_cache_table.h', |
| 265 'memory_region.cc', | 265 'memory_region.cc', |
| 266 'memory_region.h', | 266 'memory_region.h', |
| 267 'memory_region_test.cc', | 267 'memory_region_test.cc', |
| 268 'message.cc', | 268 'message.cc', |
| 269 'message.h', | 269 'message.h', |
| 270 'message_handler.cc', | 270 'message_handler.cc', |
| 271 'message_handler.h', | 271 'message_handler.h', |
| 272 'message_handler_test.cc', | 272 'message_handler_test.cc', |
| 273 'message_test.cc', | 273 'message_test.cc', |
| 274 'method_recognizer.cc', |
| 275 'method_recognizer.h', |
| 274 'metrics.cc', | 276 'metrics.cc', |
| 275 'metrics.h', | 277 'metrics.h', |
| 276 'metrics_test.cc', | 278 'metrics_test.cc', |
| 277 'native_arguments.h', | 279 'native_arguments.h', |
| 278 'native_entry.cc', | 280 'native_entry.cc', |
| 279 'native_entry.h', | 281 'native_entry.h', |
| 280 'native_entry_test.cc', | 282 'native_entry_test.cc', |
| 281 'native_entry_test.h', | 283 'native_entry_test.h', |
| 282 'native_message_handler.cc', | 284 'native_message_handler.cc', |
| 283 'native_message_handler.h', | 285 'native_message_handler.h', |
| (...skipping 162 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 446 'visitor.h', | 448 'visitor.h', |
| 447 'vtune.cc', | 449 'vtune.cc', |
| 448 'vtune.h', | 450 'vtune.h', |
| 449 'weak_table.cc', | 451 'weak_table.cc', |
| 450 'weak_table.h', | 452 'weak_table.h', |
| 451 'zone.cc', | 453 'zone.cc', |
| 452 'zone.h', | 454 'zone.h', |
| 453 'zone_test.cc', | 455 'zone_test.cc', |
| 454 ], | 456 ], |
| 455 } | 457 } |
| OLD | NEW |