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

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: Minor clean-up. Created 5 years, 3 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
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 502 matching lines...) Expand 10 before | Expand all | Expand 10 after
513 'tiles/tile_priority.cc', 513 'tiles/tile_priority.cc',
514 'tiles/tile_priority.h', 514 'tiles/tile_priority.h',
515 'tiles/tiling_set_eviction_queue.cc', 515 'tiles/tiling_set_eviction_queue.cc',
516 'tiles/tiling_set_eviction_queue.h', 516 'tiles/tiling_set_eviction_queue.h',
517 'tiles/tiling_set_raster_queue_all.cc', 517 'tiles/tiling_set_raster_queue_all.cc',
518 'tiles/tiling_set_raster_queue_all.h', 518 'tiles/tiling_set_raster_queue_all.h',
519 'tiles/tiling_set_raster_queue_required.cc', 519 'tiles/tiling_set_raster_queue_required.cc',
520 'tiles/tiling_set_raster_queue_required.h', 520 'tiles/tiling_set_raster_queue_required.h',
521 'trees/blocking_task_runner.cc', 521 'trees/blocking_task_runner.cc',
522 'trees/blocking_task_runner.h', 522 'trees/blocking_task_runner.h',
523 'trees/channel_impl.h',
524 'trees/channel_main.h',
523 'trees/damage_tracker.cc', 525 'trees/damage_tracker.cc',
524 'trees/damage_tracker.h', 526 'trees/damage_tracker.h',
525 'trees/draw_property_utils.cc', 527 'trees/draw_property_utils.cc',
526 'trees/draw_property_utils.h', 528 'trees/draw_property_utils.h',
527 'trees/latency_info_swap_promise_monitor.cc', 529 'trees/latency_info_swap_promise_monitor.cc',
528 'trees/latency_info_swap_promise_monitor.h', 530 'trees/latency_info_swap_promise_monitor.h',
529 'trees/layer_tree_host.cc', 531 'trees/layer_tree_host.cc',
530 'trees/layer_tree_host.h', 532 'trees/layer_tree_host.h',
531 'trees/layer_tree_host_client.h', 533 'trees/layer_tree_host_client.h',
532 'trees/layer_tree_host_common.cc', 534 'trees/layer_tree_host_common.cc',
533 'trees/layer_tree_host_common.h', 535 'trees/layer_tree_host_common.h',
534 'trees/layer_tree_host_impl.cc', 536 'trees/layer_tree_host_impl.cc',
535 'trees/layer_tree_host_impl.h', 537 'trees/layer_tree_host_impl.h',
536 'trees/layer_tree_host_single_thread_client.h', 538 'trees/layer_tree_host_single_thread_client.h',
537 'trees/layer_tree_impl.cc', 539 'trees/layer_tree_impl.cc',
538 'trees/layer_tree_impl.h', 540 'trees/layer_tree_impl.h',
539 'trees/layer_tree_settings.cc', 541 'trees/layer_tree_settings.cc',
540 'trees/layer_tree_settings.h', 542 'trees/layer_tree_settings.h',
541 'trees/mutator_host_client.h', 543 'trees/mutator_host_client.h',
542 'trees/occlusion.cc', 544 'trees/occlusion.cc',
543 'trees/occlusion.h', 545 'trees/occlusion.h',
544 'trees/occlusion_tracker.cc', 546 'trees/occlusion_tracker.cc',
545 'trees/occlusion_tracker.h', 547 'trees/occlusion_tracker.h',
546 'trees/property_tree.cc', 548 'trees/property_tree.cc',
547 'trees/property_tree.h', 549 'trees/property_tree.h',
548 'trees/property_tree_builder.cc', 550 'trees/property_tree_builder.cc',
549 'trees/property_tree_builder.h', 551 'trees/property_tree_builder.h',
550 'trees/proxy.cc', 552 'trees/proxy.cc',
551 'trees/proxy.h', 553 'trees/proxy.h',
554 'trees/proxy_impl.h'
555 'trees/proxy_main.h'
552 'trees/scoped_abort_remaining_swap_promises.h', 556 'trees/scoped_abort_remaining_swap_promises.h',
553 'trees/single_thread_proxy.cc', 557 'trees/single_thread_proxy.cc',
554 'trees/single_thread_proxy.h', 558 'trees/single_thread_proxy.h',
555 'trees/swap_promise_monitor.cc', 559 'trees/swap_promise_monitor.cc',
556 'trees/swap_promise_monitor.h', 560 'trees/swap_promise_monitor.h',
561 'trees/threaded_channel.cc',
562 'trees/threaded_channel.h',
557 'trees/thread_proxy.cc', 563 'trees/thread_proxy.cc',
558 'trees/thread_proxy.h', 564 'trees/thread_proxy.h',
559 'trees/tree_synchronizer.cc', 565 'trees/tree_synchronizer.cc',
560 'trees/tree_synchronizer.h', 566 'trees/tree_synchronizer.h',
561 ], 567 ],
562 'includes': [ 568 'includes': [
563 '../build/android/increase_size_for_speed.gypi', 569 '../build/android/increase_size_for_speed.gypi',
564 ], 570 ],
565 'conditions': [ 571 'conditions': [
566 ['target_arch == "ia32" or target_arch == "x64"', { 572 ['target_arch == "ia32" or target_arch == "x64"', {
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
616 'surfaces/surface_resource_holder.cc', 622 'surfaces/surface_resource_holder.cc',
617 'surfaces/surface_resource_holder.h', 623 'surfaces/surface_resource_holder.h',
618 'surfaces/surfaces_export.h', 624 'surfaces/surfaces_export.h',
619 ], 625 ],
620 'includes': [ 626 'includes': [
621 '../build/android/increase_size_for_speed.gypi', 627 '../build/android/increase_size_for_speed.gypi',
622 ], 628 ],
623 }, 629 },
624 ], 630 ],
625 } 631 }
OLDNEW
« no previous file with comments | « cc/BUILD.gn ('k') | cc/trees/channel_impl.h » ('j') | cc/trees/channel_main.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698