| 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 426 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 437 'stub_code_mips.cc', | 437 'stub_code_mips.cc', |
| 438 'stub_code_mips_test.cc', | 438 'stub_code_mips_test.cc', |
| 439 'stub_code_x64.cc', | 439 'stub_code_x64.cc', |
| 440 'stub_code_x64_test.cc', | 440 'stub_code_x64_test.cc', |
| 441 'symbols.cc', | 441 'symbols.cc', |
| 442 'symbols.h', | 442 'symbols.h', |
| 443 'tags.cc', | 443 'tags.cc', |
| 444 'tags.h', | 444 'tags.h', |
| 445 'thread.cc', | 445 'thread.cc', |
| 446 'thread.h', | 446 'thread.h', |
| 447 'thread_barrier.h', |
| 448 'thread_barrier_test.cc', |
| 447 'thread_interrupter.cc', | 449 'thread_interrupter.cc', |
| 448 'thread_interrupter.h', | 450 'thread_interrupter.h', |
| 449 'thread_interrupter_android.cc', | 451 'thread_interrupter_android.cc', |
| 450 'thread_interrupter_linux.cc', | 452 'thread_interrupter_linux.cc', |
| 451 'thread_interrupter_macos.cc', | 453 'thread_interrupter_macos.cc', |
| 452 'thread_interrupter_test.cc', | 454 'thread_interrupter_test.cc', |
| 453 'thread_interrupter_win.cc', | 455 'thread_interrupter_win.cc', |
| 454 'thread_pool.cc', | 456 'thread_pool.cc', |
| 455 'thread_pool.h', | 457 'thread_pool.h', |
| 456 'thread_pool_test.cc', | 458 'thread_pool_test.cc', |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 496 'vtune.h', | 498 'vtune.h', |
| 497 'weak_code.cc', | 499 'weak_code.cc', |
| 498 'weak_code.h', | 500 'weak_code.h', |
| 499 'weak_table.cc', | 501 'weak_table.cc', |
| 500 'weak_table.h', | 502 'weak_table.h', |
| 501 'zone.cc', | 503 'zone.cc', |
| 502 'zone.h', | 504 'zone.h', |
| 503 'zone_test.cc', | 505 'zone_test.cc', |
| 504 ], | 506 ], |
| 505 } | 507 } |
| OLD | NEW |