| 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 434 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 445 'thread_interrupter.cc', | 445 'thread_interrupter.cc', |
| 446 'thread_interrupter.h', | 446 'thread_interrupter.h', |
| 447 'thread_interrupter_android.cc', | 447 'thread_interrupter_android.cc', |
| 448 'thread_interrupter_linux.cc', | 448 'thread_interrupter_linux.cc', |
| 449 'thread_interrupter_macos.cc', | 449 'thread_interrupter_macos.cc', |
| 450 'thread_interrupter_test.cc', | 450 'thread_interrupter_test.cc', |
| 451 'thread_interrupter_win.cc', | 451 'thread_interrupter_win.cc', |
| 452 'thread_pool.cc', | 452 'thread_pool.cc', |
| 453 'thread_pool.h', | 453 'thread_pool.h', |
| 454 'thread_pool_test.cc', | 454 'thread_pool_test.cc', |
| 455 'thread_registry.cc', |
| 455 'thread_registry.h', | 456 'thread_registry.h', |
| 456 'thread_test.cc', | 457 'thread_test.cc', |
| 457 'timeline.cc', | 458 'timeline.cc', |
| 458 'timeline.h', | 459 'timeline.h', |
| 459 'timeline_test.cc', | 460 'timeline_test.cc', |
| 460 'timer.cc', | 461 'timer.cc', |
| 461 'timer.h', | 462 'timer.h', |
| 462 'token.cc', | 463 'token.cc', |
| 463 'token.h', | 464 'token.h', |
| 464 'trace_buffer.cc', | 465 'trace_buffer.cc', |
| (...skipping 26 matching lines...) Expand all Loading... |
| 491 'vtune.h', | 492 'vtune.h', |
| 492 'weak_code.cc', | 493 'weak_code.cc', |
| 493 'weak_code.h', | 494 'weak_code.h', |
| 494 'weak_table.cc', | 495 'weak_table.cc', |
| 495 'weak_table.h', | 496 'weak_table.h', |
| 496 'zone.cc', | 497 'zone.cc', |
| 497 'zone.h', | 498 'zone.h', |
| 498 'zone_test.cc', | 499 'zone_test.cc', |
| 499 ], | 500 ], |
| 500 } | 501 } |
| OLD | NEW |