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 329 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
340 'object_id_ring_test.cc', | 340 'object_id_ring_test.cc', |
341 'object_mips_test.cc', | 341 'object_mips_test.cc', |
342 'object_reload.cc', | 342 'object_reload.cc', |
343 'object_service.cc', | 343 'object_service.cc', |
344 'object_set.h', | 344 'object_set.h', |
345 'object_store.cc', | 345 'object_store.cc', |
346 'object_store.h', | 346 'object_store.h', |
347 'object_store_test.cc', | 347 'object_store_test.cc', |
348 'object_test.cc', | 348 'object_test.cc', |
349 'object_x64_test.cc', | 349 'object_x64_test.cc', |
| 350 'optimizer.cc', |
| 351 'optimizer.h', |
350 'os.h', | 352 'os.h', |
351 'os_android.cc', | 353 'os_android.cc', |
352 'os_fuchsia.cc', | 354 'os_fuchsia.cc', |
353 'os_linux.cc', | 355 'os_linux.cc', |
354 'os_macos.cc', | 356 'os_macos.cc', |
355 'os_test.cc', | 357 'os_test.cc', |
356 'os_thread.cc', | 358 'os_thread.cc', |
357 'os_thread.h', | 359 'os_thread.h', |
358 'os_thread_android.cc', | 360 'os_thread_android.cc', |
359 'os_thread_android.h', | 361 'os_thread_android.h', |
(...skipping 205 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
565 'weak_code.h', | 567 'weak_code.h', |
566 'weak_table.cc', | 568 'weak_table.cc', |
567 'weak_table.h', | 569 'weak_table.h', |
568 'zone.cc', | 570 'zone.cc', |
569 'zone.h', | 571 'zone.h', |
570 'zone_test.cc', | 572 'zone_test.cc', |
571 'zone_text_buffer.cc', | 573 'zone_text_buffer.cc', |
572 'zone_text_buffer.h', | 574 'zone_text_buffer.h', |
573 ], | 575 ], |
574 } | 576 } |
OLD | NEW |