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 332 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
343 'stub_code_arm.cc', | 343 'stub_code_arm.cc', |
344 'stub_code_arm_test.cc', | 344 'stub_code_arm_test.cc', |
345 'stub_code_ia32.cc', | 345 'stub_code_ia32.cc', |
346 'stub_code_ia32_test.cc', | 346 'stub_code_ia32_test.cc', |
347 'stub_code_mips.cc', | 347 'stub_code_mips.cc', |
348 'stub_code_mips_test.cc', | 348 'stub_code_mips_test.cc', |
349 'stub_code_x64.cc', | 349 'stub_code_x64.cc', |
350 'stub_code_x64_test.cc', | 350 'stub_code_x64_test.cc', |
351 'symbols.cc', | 351 'symbols.cc', |
352 'symbols.h', | 352 'symbols.h', |
| 353 'tags.cc', |
| 354 'tags.h', |
353 'thread.h', | 355 'thread.h', |
354 'thread_interrupter.cc', | 356 'thread_interrupter.cc', |
355 'thread_interrupter.h', | 357 'thread_interrupter.h', |
356 'thread_interrupter_android.cc', | 358 'thread_interrupter_android.cc', |
357 'thread_interrupter_linux.cc', | 359 'thread_interrupter_linux.cc', |
358 'thread_interrupter_macos.cc', | 360 'thread_interrupter_macos.cc', |
359 'thread_interrupter_test.cc', | 361 'thread_interrupter_test.cc', |
360 'thread_interrupter_win.cc', | 362 'thread_interrupter_win.cc', |
361 'thread_pool.cc', | 363 'thread_pool.cc', |
362 'thread_pool.h', | 364 'thread_pool.h', |
(...skipping 25 matching lines...) Expand all Loading... |
388 'visitor.h', | 390 'visitor.h', |
389 'vtune.cc', | 391 'vtune.cc', |
390 'vtune.h', | 392 'vtune.h', |
391 'weak_table.cc', | 393 'weak_table.cc', |
392 'weak_table.h', | 394 'weak_table.h', |
393 'zone.cc', | 395 'zone.cc', |
394 'zone.h', | 396 'zone.h', |
395 'zone_test.cc', | 397 'zone_test.cc', |
396 ], | 398 ], |
397 } | 399 } |
OLD | NEW |