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 297 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
308 'object_store.cc', | 308 'object_store.cc', |
309 'object_store.h', | 309 'object_store.h', |
310 'object_store_test.cc', | 310 'object_store_test.cc', |
311 'object_test.cc', | 311 'object_test.cc', |
312 'object_x64_test.cc', | 312 'object_x64_test.cc', |
313 'os.h', | 313 'os.h', |
314 'os_android.cc', | 314 'os_android.cc', |
315 'os_linux.cc', | 315 'os_linux.cc', |
316 'os_macos.cc', | 316 'os_macos.cc', |
317 'os_test.cc', | 317 'os_test.cc', |
| 318 'os_thread.cc', |
318 'os_thread.h', | 319 'os_thread.h', |
319 'os_thread_android.cc', | 320 'os_thread_android.cc', |
320 'os_thread_android.h', | 321 'os_thread_android.h', |
321 'os_thread_linux.cc', | 322 'os_thread_linux.cc', |
322 'os_thread_linux.h', | 323 'os_thread_linux.h', |
323 'os_thread_macos.cc', | 324 'os_thread_macos.cc', |
324 'os_thread_macos.h', | 325 'os_thread_macos.h', |
325 'os_thread_win.cc', | 326 'os_thread_win.cc', |
326 'os_thread_win.h', | 327 'os_thread_win.h', |
327 'os_win.cc', | 328 'os_win.cc', |
(...skipping 169 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 |