| 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 433 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 444 'tags.h', | 444 'tags.h', |
| 445 'thread.cc', | 445 'thread.cc', |
| 446 'thread.h', | 446 'thread.h', |
| 447 'thread_barrier.h', | 447 'thread_barrier.h', |
| 448 'thread_barrier_test.cc', | 448 'thread_barrier_test.cc', |
| 449 'thread_interrupter.cc', | 449 'thread_interrupter.cc', |
| 450 'thread_interrupter.h', | 450 'thread_interrupter.h', |
| 451 'thread_interrupter_android.cc', | 451 'thread_interrupter_android.cc', |
| 452 'thread_interrupter_linux.cc', | 452 'thread_interrupter_linux.cc', |
| 453 'thread_interrupter_macos.cc', | 453 'thread_interrupter_macos.cc', |
| 454 'thread_interrupter_test.cc', |
| 454 'thread_interrupter_win.cc', | 455 'thread_interrupter_win.cc', |
| 455 'thread_pool.cc', | 456 'thread_pool.cc', |
| 456 'thread_pool.h', | 457 'thread_pool.h', |
| 457 'thread_pool_test.cc', | 458 'thread_pool_test.cc', |
| 458 'thread_registry.cc', | 459 'thread_registry.cc', |
| 459 'thread_registry.h', | 460 'thread_registry.h', |
| 460 'thread_test.cc', | 461 'thread_test.cc', |
| 461 'timeline.cc', | 462 'timeline.cc', |
| 462 'timeline.h', | 463 'timeline.h', |
| 463 'timeline_analysis.cc', | 464 'timeline_analysis.cc', |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 497 'vtune.h', | 498 'vtune.h', |
| 498 'weak_code.cc', | 499 'weak_code.cc', |
| 499 'weak_code.h', | 500 'weak_code.h', |
| 500 'weak_table.cc', | 501 'weak_table.cc', |
| 501 'weak_table.h', | 502 'weak_table.h', |
| 502 'zone.cc', | 503 'zone.cc', |
| 503 'zone.h', | 504 'zone.h', |
| 504 'zone_test.cc', | 505 'zone_test.cc', |
| 505 ], | 506 ], |
| 506 } | 507 } |
| OLD | NEW |