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

Side by Side Diff: cc/BUILD.gn

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
« no previous file with comments | « no previous file | cc/cc.gyp » ('j') | cc/trees/channel_main.h » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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 import("//testing/test.gni") 5 import("//testing/test.gni")
6 6
7 component("cc") { 7 component("cc") {
8 sources = [ 8 sources = [
9 "animation/animation.cc", 9 "animation/animation.cc",
10 "animation/animation.h", 10 "animation/animation.h",
(...skipping 443 matching lines...) Expand 10 before | Expand all | Expand 10 after
454 "tiles/tile_priority.cc", 454 "tiles/tile_priority.cc",
455 "tiles/tile_priority.h", 455 "tiles/tile_priority.h",
456 "tiles/tiling_set_eviction_queue.cc", 456 "tiles/tiling_set_eviction_queue.cc",
457 "tiles/tiling_set_eviction_queue.h", 457 "tiles/tiling_set_eviction_queue.h",
458 "tiles/tiling_set_raster_queue_all.cc", 458 "tiles/tiling_set_raster_queue_all.cc",
459 "tiles/tiling_set_raster_queue_all.h", 459 "tiles/tiling_set_raster_queue_all.h",
460 "tiles/tiling_set_raster_queue_required.cc", 460 "tiles/tiling_set_raster_queue_required.cc",
461 "tiles/tiling_set_raster_queue_required.h", 461 "tiles/tiling_set_raster_queue_required.h",
462 "trees/blocking_task_runner.cc", 462 "trees/blocking_task_runner.cc",
463 "trees/blocking_task_runner.h", 463 "trees/blocking_task_runner.h",
464 "trees/channel_impl.h",
465 "trees/channel_main.h",
464 "trees/damage_tracker.cc", 466 "trees/damage_tracker.cc",
465 "trees/damage_tracker.h", 467 "trees/damage_tracker.h",
466 "trees/draw_property_utils.cc", 468 "trees/draw_property_utils.cc",
467 "trees/draw_property_utils.h", 469 "trees/draw_property_utils.h",
468 "trees/latency_info_swap_promise_monitor.cc", 470 "trees/latency_info_swap_promise_monitor.cc",
469 "trees/latency_info_swap_promise_monitor.h", 471 "trees/latency_info_swap_promise_monitor.h",
470 "trees/layer_tree_host.cc", 472 "trees/layer_tree_host.cc",
471 "trees/layer_tree_host.h", 473 "trees/layer_tree_host.h",
472 "trees/layer_tree_host_client.h", 474 "trees/layer_tree_host_client.h",
473 "trees/layer_tree_host_common.cc", 475 "trees/layer_tree_host_common.cc",
474 "trees/layer_tree_host_common.h", 476 "trees/layer_tree_host_common.h",
475 "trees/layer_tree_host_impl.cc", 477 "trees/layer_tree_host_impl.cc",
476 "trees/layer_tree_host_impl.h", 478 "trees/layer_tree_host_impl.h",
477 "trees/layer_tree_host_single_thread_client.h", 479 "trees/layer_tree_host_single_thread_client.h",
478 "trees/layer_tree_impl.cc", 480 "trees/layer_tree_impl.cc",
479 "trees/layer_tree_impl.h", 481 "trees/layer_tree_impl.h",
480 "trees/layer_tree_settings.cc", 482 "trees/layer_tree_settings.cc",
481 "trees/layer_tree_settings.h", 483 "trees/layer_tree_settings.h",
482 "trees/mutator_host_client.h", 484 "trees/mutator_host_client.h",
483 "trees/occlusion.cc", 485 "trees/occlusion.cc",
484 "trees/occlusion.h", 486 "trees/occlusion.h",
485 "trees/occlusion_tracker.cc", 487 "trees/occlusion_tracker.cc",
486 "trees/occlusion_tracker.h", 488 "trees/occlusion_tracker.h",
487 "trees/property_tree.cc", 489 "trees/property_tree.cc",
488 "trees/property_tree.h", 490 "trees/property_tree.h",
489 "trees/property_tree_builder.cc", 491 "trees/property_tree_builder.cc",
490 "trees/property_tree_builder.h", 492 "trees/property_tree_builder.h",
491 "trees/proxy.cc", 493 "trees/proxy.cc",
492 "trees/proxy.h", 494 "trees/proxy.h",
495 "trees/proxy_impl.h",
496 "trees/proxy_main.h",
493 "trees/scoped_abort_remaining_swap_promises.h", 497 "trees/scoped_abort_remaining_swap_promises.h",
494 "trees/single_thread_proxy.cc", 498 "trees/single_thread_proxy.cc",
495 "trees/single_thread_proxy.h", 499 "trees/single_thread_proxy.h",
496 "trees/swap_promise_monitor.cc", 500 "trees/swap_promise_monitor.cc",
497 "trees/swap_promise_monitor.h", 501 "trees/swap_promise_monitor.h",
498 "trees/thread_proxy.cc", 502 "trees/thread_proxy.cc",
499 "trees/thread_proxy.h", 503 "trees/thread_proxy.h",
504 "trees/threaded_channel.cc",
505 "trees/threaded_channel.h",
500 "trees/tree_synchronizer.cc", 506 "trees/tree_synchronizer.cc",
501 "trees/tree_synchronizer.h", 507 "trees/tree_synchronizer.h",
502 ] 508 ]
503 509
504 if (target_cpu == "x86" || target_cpu == "x64") { 510 if (target_cpu == "x86" || target_cpu == "x64") {
505 sources += [ 511 sources += [
506 "raster/texture_compressor_etc1_sse.cc", 512 "raster/texture_compressor_etc1_sse.cc",
507 "raster/texture_compressor_etc1_sse.h", 513 "raster/texture_compressor_etc1_sse.h",
508 ] 514 ]
509 } 515 }
(...skipping 418 matching lines...) Expand 10 before | Expand all | Expand 10 after
928 "//ui/gl", 934 "//ui/gl",
929 "//ui/gl:test_support", 935 "//ui/gl:test_support",
930 ] 936 ]
931 937
932 if (is_android) { 938 if (is_android) {
933 isolate_file = "cc_perftests.isolate" 939 isolate_file = "cc_perftests.isolate"
934 } 940 }
935 } 941 }
936 # When adding support for isolates, please have a look at run-time dependencies 942 # When adding support for isolates, please have a look at run-time dependencies
937 # in the cc_unittests_run target in cc_tests.gyp. 943 # in the cc_unittests_run target in cc_tests.gyp.
OLDNEW
« no previous file with comments | « no previous file | cc/cc.gyp » ('j') | cc/trees/channel_main.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698