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 251 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
262 'megamorphic_cache_table.h', | 262 'megamorphic_cache_table.h', |
263 'memory_region.cc', | 263 'memory_region.cc', |
264 'memory_region.h', | 264 'memory_region.h', |
265 'memory_region_test.cc', | 265 'memory_region_test.cc', |
266 'message.cc', | 266 'message.cc', |
267 'message.h', | 267 'message.h', |
268 'message_handler.cc', | 268 'message_handler.cc', |
269 'message_handler.h', | 269 'message_handler.h', |
270 'message_handler_test.cc', | 270 'message_handler_test.cc', |
271 'message_test.cc', | 271 'message_test.cc', |
| 272 'metrics.cc', |
| 273 'metrics.h', |
| 274 'metrics_test.cc', |
272 'native_arguments.h', | 275 'native_arguments.h', |
273 'native_entry.cc', | 276 'native_entry.cc', |
274 'native_entry.h', | 277 'native_entry.h', |
275 'native_entry_test.cc', | 278 'native_entry_test.cc', |
276 'native_entry_test.h', | 279 'native_entry_test.h', |
277 'native_message_handler.cc', | 280 'native_message_handler.cc', |
278 'native_message_handler.h', | 281 'native_message_handler.h', |
279 'native_symbol.h', | 282 'native_symbol.h', |
280 'native_symbol_android.cc', | 283 'native_symbol_android.cc', |
281 'native_symbol_linux.cc', | 284 'native_symbol_linux.cc', |
(...skipping 159 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
441 'visitor.h', | 444 'visitor.h', |
442 'vtune.cc', | 445 'vtune.cc', |
443 'vtune.h', | 446 'vtune.h', |
444 'weak_table.cc', | 447 'weak_table.cc', |
445 'weak_table.h', | 448 'weak_table.h', |
446 'zone.cc', | 449 'zone.cc', |
447 'zone.h', | 450 'zone.h', |
448 'zone_test.cc', | 451 'zone_test.cc', |
449 ], | 452 ], |
450 } | 453 } |
OLD | NEW |