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

Side by Side Diff: cc/BUILD.gn

Issue 1910213005: cc: Refactor TileTaskWorkerPool. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@task_states
Patch Set: feedback Created 4 years, 7 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/raster/bitmap_raster_buffer_provider.cc » ('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("//build/config/ui.gni") 5 import("//build/config/ui.gni")
6 import("//testing/test.gni") 6 import("//testing/test.gni")
7 7
8 component("cc") { 8 component("cc") {
9 sources = [ 9 sources = [
10 "animation/animation.cc", 10 "animation/animation.cc",
(...skipping 337 matching lines...) Expand 10 before | Expand all | Expand 10 after
348 "quads/stream_video_draw_quad.cc", 348 "quads/stream_video_draw_quad.cc",
349 "quads/stream_video_draw_quad.h", 349 "quads/stream_video_draw_quad.h",
350 "quads/surface_draw_quad.cc", 350 "quads/surface_draw_quad.cc",
351 "quads/surface_draw_quad.h", 351 "quads/surface_draw_quad.h",
352 "quads/texture_draw_quad.cc", 352 "quads/texture_draw_quad.cc",
353 "quads/texture_draw_quad.h", 353 "quads/texture_draw_quad.h",
354 "quads/tile_draw_quad.cc", 354 "quads/tile_draw_quad.cc",
355 "quads/tile_draw_quad.h", 355 "quads/tile_draw_quad.h",
356 "quads/yuv_video_draw_quad.cc", 356 "quads/yuv_video_draw_quad.cc",
357 "quads/yuv_video_draw_quad.h", 357 "quads/yuv_video_draw_quad.h",
358 "raster/bitmap_tile_task_worker_pool.cc", 358 "raster/bitmap_raster_buffer_provider.cc",
359 "raster/bitmap_tile_task_worker_pool.h", 359 "raster/bitmap_raster_buffer_provider.h",
360 "raster/gpu_raster_buffer_provider.cc",
361 "raster/gpu_raster_buffer_provider.h",
360 "raster/gpu_rasterizer.cc", 362 "raster/gpu_rasterizer.cc",
361 "raster/gpu_rasterizer.h", 363 "raster/gpu_rasterizer.h",
362 "raster/gpu_tile_task_worker_pool.cc", 364 "raster/one_copy_raster_buffer_provider.cc",
363 "raster/gpu_tile_task_worker_pool.h", 365 "raster/one_copy_raster_buffer_provider.h",
364 "raster/one_copy_tile_task_worker_pool.cc",
365 "raster/one_copy_tile_task_worker_pool.h",
366 "raster/raster_buffer.cc", 366 "raster/raster_buffer.cc",
367 "raster/raster_buffer.h", 367 "raster/raster_buffer.h",
368 "raster/raster_buffer_provider.cc",
369 "raster/raster_buffer_provider.h",
368 "raster/scoped_gpu_raster.cc", 370 "raster/scoped_gpu_raster.cc",
369 "raster/scoped_gpu_raster.h", 371 "raster/scoped_gpu_raster.h",
370 "raster/single_thread_task_graph_runner.cc", 372 "raster/single_thread_task_graph_runner.cc",
371 "raster/single_thread_task_graph_runner.h", 373 "raster/single_thread_task_graph_runner.h",
372 "raster/staging_buffer_pool.cc", 374 "raster/staging_buffer_pool.cc",
373 "raster/staging_buffer_pool.h", 375 "raster/staging_buffer_pool.h",
374 "raster/synchronous_task_graph_runner.cc", 376 "raster/synchronous_task_graph_runner.cc",
375 "raster/synchronous_task_graph_runner.h", 377 "raster/synchronous_task_graph_runner.h",
376 "raster/task.cc", 378 "raster/task.cc",
377 "raster/task.h", 379 "raster/task.h",
378 "raster/task_category.h", 380 "raster/task_category.h",
379 "raster/task_graph_runner.h", 381 "raster/task_graph_runner.h",
380 "raster/task_graph_work_queue.cc", 382 "raster/task_graph_work_queue.cc",
381 "raster/task_graph_work_queue.h", 383 "raster/task_graph_work_queue.h",
382 "raster/texture_compressor.cc", 384 "raster/texture_compressor.cc",
383 "raster/texture_compressor.h", 385 "raster/texture_compressor.h",
384 "raster/texture_compressor_etc1.cc", 386 "raster/texture_compressor_etc1.cc",
385 "raster/texture_compressor_etc1.h", 387 "raster/texture_compressor_etc1.h",
386 "raster/tile_task.cc", 388 "raster/tile_task.cc",
387 "raster/tile_task.h", 389 "raster/tile_task.h",
388 "raster/tile_task_worker_pool.cc", 390 "raster/zero_copy_raster_buffer_provider.cc",
389 "raster/tile_task_worker_pool.h", 391 "raster/zero_copy_raster_buffer_provider.h",
390 "raster/zero_copy_tile_task_worker_pool.cc",
391 "raster/zero_copy_tile_task_worker_pool.h",
392 "resources/memory_history.cc", 392 "resources/memory_history.cc",
393 "resources/memory_history.h", 393 "resources/memory_history.h",
394 "resources/platform_color.h", 394 "resources/platform_color.h",
395 "resources/release_callback.h", 395 "resources/release_callback.h",
396 "resources/resource.h", 396 "resources/resource.h",
397 "resources/resource_format.cc", 397 "resources/resource_format.cc",
398 "resources/resource_format.h", 398 "resources/resource_format.h",
399 "resources/resource_pool.cc", 399 "resources/resource_pool.cc",
400 "resources/resource_pool.h", 400 "resources/resource_pool.h",
401 "resources/resource_provider.cc", 401 "resources/resource_provider.cc",
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after
462 "tiles/software_image_decode_controller.cc", 462 "tiles/software_image_decode_controller.cc",
463 "tiles/software_image_decode_controller.h", 463 "tiles/software_image_decode_controller.h",
464 "tiles/tile.cc", 464 "tiles/tile.cc",
465 "tiles/tile.h", 465 "tiles/tile.h",
466 "tiles/tile_draw_info.cc", 466 "tiles/tile_draw_info.cc",
467 "tiles/tile_draw_info.h", 467 "tiles/tile_draw_info.h",
468 "tiles/tile_manager.cc", 468 "tiles/tile_manager.cc",
469 "tiles/tile_manager.h", 469 "tiles/tile_manager.h",
470 "tiles/tile_priority.cc", 470 "tiles/tile_priority.cc",
471 "tiles/tile_priority.h", 471 "tiles/tile_priority.h",
472 "tiles/tile_task_manager.cc",
473 "tiles/tile_task_manager.h",
472 "tiles/tiling_set_eviction_queue.cc", 474 "tiles/tiling_set_eviction_queue.cc",
473 "tiles/tiling_set_eviction_queue.h", 475 "tiles/tiling_set_eviction_queue.h",
474 "tiles/tiling_set_raster_queue_all.cc", 476 "tiles/tiling_set_raster_queue_all.cc",
475 "tiles/tiling_set_raster_queue_all.h", 477 "tiles/tiling_set_raster_queue_all.h",
476 "tiles/tiling_set_raster_queue_required.cc", 478 "tiles/tiling_set_raster_queue_required.cc",
477 "tiles/tiling_set_raster_queue_required.h", 479 "tiles/tiling_set_raster_queue_required.h",
478 "trees/blocking_task_runner.cc", 480 "trees/blocking_task_runner.cc",
479 "trees/blocking_task_runner.h", 481 "trees/blocking_task_runner.h",
480 "trees/channel_impl.h", 482 "trees/channel_impl.h",
481 "trees/channel_main.h", 483 "trees/channel_main.h",
(...skipping 136 matching lines...) Expand 10 before | Expand all | Expand 10 after
618 "test/fake_painted_scrollbar_layer.cc", 620 "test/fake_painted_scrollbar_layer.cc",
619 "test/fake_painted_scrollbar_layer.h", 621 "test/fake_painted_scrollbar_layer.h",
620 "test/fake_picture_layer.cc", 622 "test/fake_picture_layer.cc",
621 "test/fake_picture_layer.h", 623 "test/fake_picture_layer.h",
622 "test/fake_picture_layer_impl.cc", 624 "test/fake_picture_layer_impl.cc",
623 "test/fake_picture_layer_impl.h", 625 "test/fake_picture_layer_impl.h",
624 "test/fake_picture_layer_tiling_client.cc", 626 "test/fake_picture_layer_tiling_client.cc",
625 "test/fake_picture_layer_tiling_client.h", 627 "test/fake_picture_layer_tiling_client.h",
626 "test/fake_proxy.cc", 628 "test/fake_proxy.cc",
627 "test/fake_proxy.h", 629 "test/fake_proxy.h",
630 "test/fake_raster_buffer_provider.cc",
631 "test/fake_raster_buffer_provider.h",
628 "test/fake_raster_source.cc", 632 "test/fake_raster_source.cc",
629 "test/fake_raster_source.h", 633 "test/fake_raster_source.h",
630 "test/fake_recording_source.cc", 634 "test/fake_recording_source.cc",
631 "test/fake_recording_source.h", 635 "test/fake_recording_source.h",
632 "test/fake_renderer_client.cc", 636 "test/fake_renderer_client.cc",
633 "test/fake_renderer_client.h", 637 "test/fake_renderer_client.h",
634 "test/fake_rendering_stats_instrumentation.h", 638 "test/fake_rendering_stats_instrumentation.h",
635 "test/fake_resource_provider.h", 639 "test/fake_resource_provider.h",
636 "test/fake_scoped_ui_resource.cc", 640 "test/fake_scoped_ui_resource.cc",
637 "test/fake_scoped_ui_resource.h", 641 "test/fake_scoped_ui_resource.h",
638 "test/fake_scrollbar.cc", 642 "test/fake_scrollbar.cc",
639 "test/fake_scrollbar.h", 643 "test/fake_scrollbar.h",
640 "test/fake_tile_manager.cc", 644 "test/fake_tile_manager.cc",
641 "test/fake_tile_manager.h", 645 "test/fake_tile_manager.h",
642 "test/fake_tile_manager_client.cc", 646 "test/fake_tile_manager_client.cc",
643 "test/fake_tile_manager_client.h", 647 "test/fake_tile_manager_client.h",
648 "test/fake_tile_task_manager.cc",
649 "test/fake_tile_task_manager.h",
644 "test/fake_ui_resource_layer_tree_host_impl.cc", 650 "test/fake_ui_resource_layer_tree_host_impl.cc",
645 "test/fake_ui_resource_layer_tree_host_impl.h", 651 "test/fake_ui_resource_layer_tree_host_impl.h",
646 "test/fake_video_frame_provider.cc", 652 "test/fake_video_frame_provider.cc",
647 "test/fake_video_frame_provider.h", 653 "test/fake_video_frame_provider.h",
648 "test/geometry_test_utils.cc", 654 "test/geometry_test_utils.cc",
649 "test/geometry_test_utils.h", 655 "test/geometry_test_utils.h",
650 "test/layer_test_common.cc", 656 "test/layer_test_common.cc",
651 "test/layer_test_common.h", 657 "test/layer_test_common.h",
652 "test/layer_tree_host_common_test.cc", 658 "test/layer_tree_host_common_test.cc",
653 "test/layer_tree_host_common_test.h", 659 "test/layer_tree_host_common_test.h",
(...skipping 193 matching lines...) Expand 10 before | Expand all | Expand 10 after
847 "playback/recording_source_unittest.cc", 853 "playback/recording_source_unittest.cc",
848 "proto/base_conversions_unittest.cc", 854 "proto/base_conversions_unittest.cc",
849 "proto/cc_conversions_unittest.cc", 855 "proto/cc_conversions_unittest.cc",
850 "proto/gfx_conversions_unittest.cc", 856 "proto/gfx_conversions_unittest.cc",
851 "proto/gpu_conversions_unittest.cc", 857 "proto/gpu_conversions_unittest.cc",
852 "proto/skia_conversions_unittest.cc", 858 "proto/skia_conversions_unittest.cc",
853 "proto/synced_property_conversions_unittest.cc", 859 "proto/synced_property_conversions_unittest.cc",
854 "quads/draw_polygon_unittest.cc", 860 "quads/draw_polygon_unittest.cc",
855 "quads/draw_quad_unittest.cc", 861 "quads/draw_quad_unittest.cc",
856 "quads/render_pass_unittest.cc", 862 "quads/render_pass_unittest.cc",
863 "raster/raster_buffer_provider_unittest.cc",
857 "raster/scoped_gpu_raster_unittest.cc", 864 "raster/scoped_gpu_raster_unittest.cc",
858 "raster/single_thread_task_graph_runner_unittest.cc", 865 "raster/single_thread_task_graph_runner_unittest.cc",
859 "raster/synchronous_task_graph_runner_unittest.cc", 866 "raster/synchronous_task_graph_runner_unittest.cc",
860 "raster/texture_compressor_etc1_unittest.cc", 867 "raster/texture_compressor_etc1_unittest.cc",
861 "raster/tile_task_worker_pool_unittest.cc",
862 "resources/platform_color_unittest.cc", 868 "resources/platform_color_unittest.cc",
863 "resources/resource_pool_unittest.cc", 869 "resources/resource_pool_unittest.cc",
864 "resources/resource_provider_unittest.cc", 870 "resources/resource_provider_unittest.cc",
865 "resources/resource_util_unittest.cc", 871 "resources/resource_util_unittest.cc",
866 "resources/scoped_resource_unittest.cc", 872 "resources/scoped_resource_unittest.cc",
867 "resources/video_resource_updater_unittest.cc", 873 "resources/video_resource_updater_unittest.cc",
868 "scheduler/begin_frame_source_unittest.cc", 874 "scheduler/begin_frame_source_unittest.cc",
869 "scheduler/commit_earlyout_reason_unittest.cc", 875 "scheduler/commit_earlyout_reason_unittest.cc",
870 "scheduler/compositor_timing_history_unittest.cc", 876 "scheduler/compositor_timing_history_unittest.cc",
871 "scheduler/delay_based_time_source_unittest.cc", 877 "scheduler/delay_based_time_source_unittest.cc",
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after
963 "//third_party/mesa:osmesa", 969 "//third_party/mesa:osmesa",
964 ] 970 ]
965 } 971 }
966 972
967 test("cc_perftests") { 973 test("cc_perftests") {
968 sources = [ 974 sources = [
969 "animation/animation_host_perftest.cc", 975 "animation/animation_host_perftest.cc",
970 "layers/layer_perftest.cc", 976 "layers/layer_perftest.cc",
971 "layers/picture_layer_impl_perftest.cc", 977 "layers/picture_layer_impl_perftest.cc",
972 "quads/draw_quad_perftest.cc", 978 "quads/draw_quad_perftest.cc",
979 "raster/raster_buffer_provider_perftest.cc",
973 "raster/task_graph_runner_perftest.cc", 980 "raster/task_graph_runner_perftest.cc",
974 "raster/texture_compressor_perftest.cc", 981 "raster/texture_compressor_perftest.cc",
975 "raster/tile_task_worker_pool_perftest.cc",
976 "surfaces/surface_aggregator_perftest.cc", 982 "surfaces/surface_aggregator_perftest.cc",
977 "test/cc_test_suite.cc", 983 "test/cc_test_suite.cc",
978 "test/run_all_perftests.cc", 984 "test/run_all_perftests.cc",
979 "tiles/picture_layer_tiling_perftest.cc", 985 "tiles/picture_layer_tiling_perftest.cc",
980 "tiles/tile_manager_perftest.cc", 986 "tiles/tile_manager_perftest.cc",
981 "trees/layer_tree_host_common_perftest.cc", 987 "trees/layer_tree_host_common_perftest.cc",
982 "trees/layer_tree_host_perftest.cc", 988 "trees/layer_tree_host_perftest.cc",
983 "trees/occlusion_tracker_perftest.cc", 989 "trees/occlusion_tracker_perftest.cc",
984 ] 990 ]
985 991
(...skipping 17 matching lines...) Expand all
1003 "//ui/gl", 1009 "//ui/gl",
1004 "//ui/gl:test_support", 1010 "//ui/gl:test_support",
1005 ] 1011 ]
1006 1012
1007 if (is_android) { 1013 if (is_android) {
1008 isolate_file = "cc_perftests.isolate" 1014 isolate_file = "cc_perftests.isolate"
1009 } 1015 }
1010 } 1016 }
1011 # When adding support for isolates, please have a look at run-time dependencies 1017 # When adding support for isolates, please have a look at run-time dependencies
1012 # in the cc_unittests_run target in cc_tests.gyp. 1018 # in the cc_unittests_run target in cc_tests.gyp.
OLDNEW
« no previous file with comments | « no previous file | cc/cc.gyp » ('j') | cc/raster/bitmap_raster_buffer_provider.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698