| 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 404 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 415 'stub_code_ia32.cc', | 415 'stub_code_ia32.cc', |
| 416 'stub_code_ia32_test.cc', | 416 'stub_code_ia32_test.cc', |
| 417 'stub_code_mips.cc', | 417 'stub_code_mips.cc', |
| 418 'stub_code_mips_test.cc', | 418 'stub_code_mips_test.cc', |
| 419 'stub_code_x64.cc', | 419 'stub_code_x64.cc', |
| 420 'stub_code_x64_test.cc', | 420 'stub_code_x64_test.cc', |
| 421 'symbols.cc', | 421 'symbols.cc', |
| 422 'symbols.h', | 422 'symbols.h', |
| 423 'tags.cc', | 423 'tags.cc', |
| 424 'tags.h', | 424 'tags.h', |
| 425 'thread.h', |
| 425 'thread_interrupter.cc', | 426 'thread_interrupter.cc', |
| 426 'thread_interrupter.h', | 427 'thread_interrupter.h', |
| 427 'thread_interrupter_android.cc', | 428 'thread_interrupter_android.cc', |
| 428 'thread_interrupter_linux.cc', | 429 'thread_interrupter_linux.cc', |
| 429 'thread_interrupter_macos.cc', | 430 'thread_interrupter_macos.cc', |
| 430 'thread_interrupter_test.cc', | 431 'thread_interrupter_test.cc', |
| 431 'thread_interrupter_win.cc', | 432 'thread_interrupter_win.cc', |
| 432 'thread_pool.cc', | 433 'thread_pool.cc', |
| 433 'thread_pool.h', | 434 'thread_pool.h', |
| 434 'thread_pool_test.cc', | 435 'thread_pool_test.cc', |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 467 'vtune.h', | 468 'vtune.h', |
| 468 'weak_code.cc', | 469 'weak_code.cc', |
| 469 'weak_code.h', | 470 'weak_code.h', |
| 470 'weak_table.cc', | 471 'weak_table.cc', |
| 471 'weak_table.h', | 472 'weak_table.h', |
| 472 'zone.cc', | 473 'zone.cc', |
| 473 'zone.h', | 474 'zone.h', |
| 474 'zone_test.cc', | 475 'zone_test.cc', |
| 475 ], | 476 ], |
| 476 } | 477 } |
| OLD | NEW |