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

Side by Side Diff: cc/cc.gyp

Issue 1357373002: Add basic framework for splitting thread proxy. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressing comments. Created 5 years, 2 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
« no previous file with comments | « cc/BUILD.gn ('k') | cc/trees/channel_impl.h » ('j') | 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) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 { 5 {
6 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
8 }, 8 },
9 'targets': [ 9 'targets': [
10 { 10 {
(...skipping 494 matching lines...) Expand 10 before | Expand all | Expand 10 after
505 'tiles/tile_priority.cc', 505 'tiles/tile_priority.cc',
506 'tiles/tile_priority.h', 506 'tiles/tile_priority.h',
507 'tiles/tiling_set_eviction_queue.cc', 507 'tiles/tiling_set_eviction_queue.cc',
508 'tiles/tiling_set_eviction_queue.h', 508 'tiles/tiling_set_eviction_queue.h',
509 'tiles/tiling_set_raster_queue_all.cc', 509 'tiles/tiling_set_raster_queue_all.cc',
510 'tiles/tiling_set_raster_queue_all.h', 510 'tiles/tiling_set_raster_queue_all.h',
511 'tiles/tiling_set_raster_queue_required.cc', 511 'tiles/tiling_set_raster_queue_required.cc',
512 'tiles/tiling_set_raster_queue_required.h', 512 'tiles/tiling_set_raster_queue_required.h',
513 'trees/blocking_task_runner.cc', 513 'trees/blocking_task_runner.cc',
514 'trees/blocking_task_runner.h', 514 'trees/blocking_task_runner.h',
515 'trees/channel_impl.h',
516 'trees/channel_main.h',
515 'trees/damage_tracker.cc', 517 'trees/damage_tracker.cc',
516 'trees/damage_tracker.h', 518 'trees/damage_tracker.h',
517 'trees/draw_property_utils.cc', 519 'trees/draw_property_utils.cc',
518 'trees/draw_property_utils.h', 520 'trees/draw_property_utils.h',
519 'trees/latency_info_swap_promise_monitor.cc', 521 'trees/latency_info_swap_promise_monitor.cc',
520 'trees/latency_info_swap_promise_monitor.h', 522 'trees/latency_info_swap_promise_monitor.h',
521 'trees/layer_tree_host.cc', 523 'trees/layer_tree_host.cc',
522 'trees/layer_tree_host.h', 524 'trees/layer_tree_host.h',
523 'trees/layer_tree_host_client.h', 525 'trees/layer_tree_host_client.h',
524 'trees/layer_tree_host_common.cc', 526 'trees/layer_tree_host_common.cc',
525 'trees/layer_tree_host_common.h', 527 'trees/layer_tree_host_common.h',
526 'trees/layer_tree_host_impl.cc', 528 'trees/layer_tree_host_impl.cc',
527 'trees/layer_tree_host_impl.h', 529 'trees/layer_tree_host_impl.h',
528 'trees/layer_tree_host_single_thread_client.h', 530 'trees/layer_tree_host_single_thread_client.h',
529 'trees/layer_tree_impl.cc', 531 'trees/layer_tree_impl.cc',
530 'trees/layer_tree_impl.h', 532 'trees/layer_tree_impl.h',
531 'trees/layer_tree_settings.cc', 533 'trees/layer_tree_settings.cc',
532 'trees/layer_tree_settings.h', 534 'trees/layer_tree_settings.h',
533 'trees/mutator_host_client.h', 535 'trees/mutator_host_client.h',
534 'trees/occlusion.cc', 536 'trees/occlusion.cc',
535 'trees/occlusion.h', 537 'trees/occlusion.h',
536 'trees/occlusion_tracker.cc', 538 'trees/occlusion_tracker.cc',
537 'trees/occlusion_tracker.h', 539 'trees/occlusion_tracker.h',
538 'trees/property_tree.cc', 540 'trees/property_tree.cc',
539 'trees/property_tree.h', 541 'trees/property_tree.h',
540 'trees/property_tree_builder.cc', 542 'trees/property_tree_builder.cc',
541 'trees/property_tree_builder.h', 543 'trees/property_tree_builder.h',
542 'trees/proxy.cc', 544 'trees/proxy.cc',
543 'trees/proxy.h', 545 'trees/proxy.h',
546 'trees/proxy_impl.h'
547 'trees/proxy_main.h'
brucedawson 2015/10/01 00:20:32 Missing commas here make for a very odd three-part
544 'trees/scoped_abort_remaining_swap_promises.h', 548 'trees/scoped_abort_remaining_swap_promises.h',
545 'trees/single_thread_proxy.cc', 549 'trees/single_thread_proxy.cc',
546 'trees/single_thread_proxy.h', 550 'trees/single_thread_proxy.h',
547 'trees/swap_promise_monitor.cc', 551 'trees/swap_promise_monitor.cc',
548 'trees/swap_promise_monitor.h', 552 'trees/swap_promise_monitor.h',
553 'trees/threaded_channel.cc',
554 'trees/threaded_channel.h',
549 'trees/thread_proxy.cc', 555 'trees/thread_proxy.cc',
550 'trees/thread_proxy.h', 556 'trees/thread_proxy.h',
551 'trees/tree_synchronizer.cc', 557 'trees/tree_synchronizer.cc',
552 'trees/tree_synchronizer.h', 558 'trees/tree_synchronizer.h',
553 ], 559 ],
554 'includes': [ 560 'includes': [
555 '../build/android/increase_size_for_speed.gypi', 561 '../build/android/increase_size_for_speed.gypi',
556 ], 562 ],
557 'conditions': [ 563 'conditions': [
558 ['target_arch == "ia32" or target_arch == "x64"', { 564 ['target_arch == "ia32" or target_arch == "x64"', {
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
608 'surfaces/surface_resource_holder.cc', 614 'surfaces/surface_resource_holder.cc',
609 'surfaces/surface_resource_holder.h', 615 'surfaces/surface_resource_holder.h',
610 'surfaces/surfaces_export.h', 616 'surfaces/surfaces_export.h',
611 ], 617 ],
612 'includes': [ 618 'includes': [
613 '../build/android/increase_size_for_speed.gypi', 619 '../build/android/increase_size_for_speed.gypi',
614 ], 620 ],
615 }, 621 },
616 ], 622 ],
617 } 623 }
OLDNEW
« no previous file with comments | « cc/BUILD.gn ('k') | cc/trees/channel_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698