Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1528)

Side by Side Diff: runtime/vm/vm_sources.gypi

Issue 796063006: Rename Thread -> OSThread. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 5 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « runtime/vm/thread_win.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 295 matching lines...) Expand 10 before | Expand all | Expand 10 after
306 'object_store.cc', 306 'object_store.cc',
307 'object_store.h', 307 'object_store.h',
308 'object_store_test.cc', 308 'object_store_test.cc',
309 'object_test.cc', 309 'object_test.cc',
310 'object_x64_test.cc', 310 'object_x64_test.cc',
311 'os.h', 311 'os.h',
312 'os_android.cc', 312 'os_android.cc',
313 'os_linux.cc', 313 'os_linux.cc',
314 'os_macos.cc', 314 'os_macos.cc',
315 'os_test.cc', 315 'os_test.cc',
316 'os_thread.h',
317 'os_thread_android.cc',
318 'os_thread_android.h',
319 'os_thread_linux.cc',
320 'os_thread_linux.h',
321 'os_thread_macos.cc',
322 'os_thread_macos.h',
323 'os_thread_win.cc',
324 'os_thread_win.h',
316 'os_win.cc', 325 'os_win.cc',
317 'pages.cc', 326 'pages.cc',
318 'pages.h', 327 'pages.h',
319 'pages_test.cc', 328 'pages_test.cc',
320 'parser.cc', 329 'parser.cc',
321 'parser.h', 330 'parser.h',
322 'parser_test.cc', 331 'parser_test.cc',
323 'port.cc', 332 'port.cc',
324 'port.h', 333 'port.h',
325 'port_test.cc', 334 'port_test.cc',
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after
406 'stub_code_ia32.cc', 415 'stub_code_ia32.cc',
407 'stub_code_ia32_test.cc', 416 'stub_code_ia32_test.cc',
408 'stub_code_mips.cc', 417 'stub_code_mips.cc',
409 'stub_code_mips_test.cc', 418 'stub_code_mips_test.cc',
410 'stub_code_x64.cc', 419 'stub_code_x64.cc',
411 'stub_code_x64_test.cc', 420 'stub_code_x64_test.cc',
412 'symbols.cc', 421 'symbols.cc',
413 'symbols.h', 422 'symbols.h',
414 'tags.cc', 423 'tags.cc',
415 'tags.h', 424 'tags.h',
416 'thread.h',
417 'thread_android.cc',
418 'thread_android.h',
419 'thread_linux.cc',
420 'thread_linux.h',
421 'thread_interrupter.cc', 425 'thread_interrupter.cc',
422 'thread_interrupter.h', 426 'thread_interrupter.h',
423 'thread_interrupter_android.cc', 427 'thread_interrupter_android.cc',
424 'thread_interrupter_linux.cc', 428 'thread_interrupter_linux.cc',
425 'thread_interrupter_macos.cc', 429 'thread_interrupter_macos.cc',
426 'thread_interrupter_test.cc', 430 'thread_interrupter_test.cc',
427 'thread_interrupter_win.cc', 431 'thread_interrupter_win.cc',
428 'thread_macos.cc',
429 'thread_macos.h',
430 'thread_pool.cc', 432 'thread_pool.cc',
431 'thread_pool.h', 433 'thread_pool.h',
432 'thread_pool_test.cc', 434 'thread_pool_test.cc',
433 'thread_test.cc', 435 'thread_test.cc',
434 'thread_win.cc',
435 'thread_win.h',
436 'timer.cc', 436 'timer.cc',
437 'timer.h', 437 'timer.h',
438 'token.cc', 438 'token.cc',
439 'token.h', 439 'token.h',
440 'trace_buffer.cc', 440 'trace_buffer.cc',
441 'trace_buffer.h', 441 'trace_buffer.h',
442 'trace_buffer_test.cc', 442 'trace_buffer_test.cc',
443 'unibrow.cc', 443 'unibrow.cc',
444 'unibrow.h', 444 'unibrow.h',
445 'unibrow-inl.h', 445 'unibrow-inl.h',
(...skipping 21 matching lines...) Expand all
467 'vtune.h', 467 'vtune.h',
468 'weak_code.cc', 468 'weak_code.cc',
469 'weak_code.h', 469 'weak_code.h',
470 'weak_table.cc', 470 'weak_table.cc',
471 'weak_table.h', 471 'weak_table.h',
472 'zone.cc', 472 'zone.cc',
473 'zone.h', 473 'zone.h',
474 'zone_test.cc', 474 'zone_test.cc',
475 ], 475 ],
476 } 476 }
OLDNEW
« no previous file with comments | « runtime/vm/thread_win.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698