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

Side by Side Diff: cc/BUILD.gn

Issue 1982893002: [blimp] Add SkPicture caching support. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressed comments from vmpstr, including adding //cc/blimp Created 4 years, 6 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 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 22 matching lines...) Expand all
33 "animation/scroll_offset_animations_impl.cc", 33 "animation/scroll_offset_animations_impl.cc",
34 "animation/scroll_offset_animations_impl.h", 34 "animation/scroll_offset_animations_impl.h",
35 "animation/target_property.cc", 35 "animation/target_property.cc",
36 "animation/target_property.h", 36 "animation/target_property.h",
37 "animation/timing_function.cc", 37 "animation/timing_function.cc",
38 "animation/timing_function.h", 38 "animation/timing_function.h",
39 "animation/transform_operation.cc", 39 "animation/transform_operation.cc",
40 "animation/transform_operation.h", 40 "animation/transform_operation.h",
41 "animation/transform_operations.cc", 41 "animation/transform_operations.cc",
42 "animation/transform_operations.h", 42 "animation/transform_operations.h",
43 "blimp/client_picture_cache.h",
44 "blimp/engine_picture_cache.h",
45 "blimp/image_serialization_processor.h",
46 "blimp/picture_data.cc",
47 "blimp/picture_data.h",
48 "blimp/picture_data_conversions.cc",
49 "blimp/picture_data_conversions.h",
43 "debug/benchmark_instrumentation.cc", 50 "debug/benchmark_instrumentation.cc",
44 "debug/benchmark_instrumentation.h", 51 "debug/benchmark_instrumentation.h",
45 "debug/debug_colors.cc", 52 "debug/debug_colors.cc",
46 "debug/debug_colors.h", 53 "debug/debug_colors.h",
47 "debug/debug_rect_history.cc", 54 "debug/debug_rect_history.cc",
48 "debug/debug_rect_history.h", 55 "debug/debug_rect_history.h",
49 "debug/devtools_instrumentation.h", 56 "debug/devtools_instrumentation.h",
50 "debug/frame_rate_counter.cc", 57 "debug/frame_rate_counter.cc",
51 "debug/frame_rate_counter.h", 58 "debug/frame_rate_counter.h",
52 "debug/frame_viewer_instrumentation.cc", 59 "debug/frame_viewer_instrumentation.cc",
(...skipping 251 matching lines...) Expand 10 before | Expand all | Expand 10 after
304 "playback/transform_display_item.cc", 311 "playback/transform_display_item.cc",
305 "playback/transform_display_item.h", 312 "playback/transform_display_item.h",
306 "proto/base_conversions.cc", 313 "proto/base_conversions.cc",
307 "proto/base_conversions.h", 314 "proto/base_conversions.h",
308 "proto/cc_conversions.cc", 315 "proto/cc_conversions.cc",
309 "proto/cc_conversions.h", 316 "proto/cc_conversions.h",
310 "proto/gfx_conversions.cc", 317 "proto/gfx_conversions.cc",
311 "proto/gfx_conversions.h", 318 "proto/gfx_conversions.h",
312 "proto/gpu_conversions.cc", 319 "proto/gpu_conversions.cc",
313 "proto/gpu_conversions.h", 320 "proto/gpu_conversions.h",
314 "proto/image_serialization_processor.h",
315 "proto/skia_conversions.cc", 321 "proto/skia_conversions.cc",
316 "proto/skia_conversions.h", 322 "proto/skia_conversions.h",
317 "proto/synced_property_conversions.cc", 323 "proto/synced_property_conversions.cc",
318 "proto/synced_property_conversions.h", 324 "proto/synced_property_conversions.h",
319 "quads/content_draw_quad_base.cc", 325 "quads/content_draw_quad_base.cc",
320 "quads/content_draw_quad_base.h", 326 "quads/content_draw_quad_base.h",
321 "quads/debug_border_draw_quad.cc", 327 "quads/debug_border_draw_quad.cc",
322 "quads/debug_border_draw_quad.h", 328 "quads/debug_border_draw_quad.h",
323 "quads/draw_polygon.cc", 329 "quads/draw_polygon.cc",
324 "quads/draw_polygon.h", 330 "quads/draw_polygon.h",
(...skipping 256 matching lines...) Expand 10 before | Expand all | Expand 10 after
581 "test/animation_timelines_test_common.cc", 587 "test/animation_timelines_test_common.cc",
582 "test/animation_timelines_test_common.h", 588 "test/animation_timelines_test_common.h",
583 "test/begin_frame_args_test.cc", 589 "test/begin_frame_args_test.cc",
584 "test/begin_frame_args_test.h", 590 "test/begin_frame_args_test.h",
585 "test/begin_frame_source_test.cc", 591 "test/begin_frame_source_test.cc",
586 "test/begin_frame_source_test.h", 592 "test/begin_frame_source_test.h",
587 "test/failure_output_surface.cc", 593 "test/failure_output_surface.cc",
588 "test/failure_output_surface.h", 594 "test/failure_output_surface.h",
589 "test/fake_channel_impl.cc", 595 "test/fake_channel_impl.cc",
590 "test/fake_channel_impl.h", 596 "test/fake_channel_impl.h",
597 "test/fake_client_picture_cache.cc",
598 "test/fake_client_picture_cache.h",
591 "test/fake_content_layer_client.cc", 599 "test/fake_content_layer_client.cc",
592 "test/fake_content_layer_client.h", 600 "test/fake_content_layer_client.h",
601 "test/fake_engine_picture_cache.cc",
602 "test/fake_engine_picture_cache.h",
593 "test/fake_external_begin_frame_source.cc", 603 "test/fake_external_begin_frame_source.cc",
594 "test/fake_external_begin_frame_source.h", 604 "test/fake_external_begin_frame_source.h",
595 "test/fake_image_serialization_processor.cc", 605 "test/fake_image_serialization_processor.cc",
596 "test/fake_image_serialization_processor.h", 606 "test/fake_image_serialization_processor.h",
597 "test/fake_impl_task_runner_provider.h", 607 "test/fake_impl_task_runner_provider.h",
598 "test/fake_layer_tree_host.cc", 608 "test/fake_layer_tree_host.cc",
599 "test/fake_layer_tree_host.h", 609 "test/fake_layer_tree_host.h",
600 "test/fake_layer_tree_host_client.cc", 610 "test/fake_layer_tree_host_client.cc",
601 "test/fake_layer_tree_host_client.h", 611 "test/fake_layer_tree_host_client.h",
602 "test/fake_layer_tree_host_impl.cc", 612 "test/fake_layer_tree_host_impl.cc",
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
660 "test/layer_tree_test.cc", 670 "test/layer_tree_test.cc",
661 "test/layer_tree_test.h", 671 "test/layer_tree_test.h",
662 "test/mock_helper.h", 672 "test/mock_helper.h",
663 "test/mock_occlusion_tracker.h", 673 "test/mock_occlusion_tracker.h",
664 "test/ordered_simple_task_runner.cc", 674 "test/ordered_simple_task_runner.cc",
665 "test/ordered_simple_task_runner.h", 675 "test/ordered_simple_task_runner.h",
666 "test/ordered_texture_map.cc", 676 "test/ordered_texture_map.cc",
667 "test/ordered_texture_map.h", 677 "test/ordered_texture_map.h",
668 "test/paths.cc", 678 "test/paths.cc",
669 "test/paths.h", 679 "test/paths.h",
680 "test/picture_cache_model.cc",
681 "test/picture_cache_model.h",
670 "test/pixel_comparator.cc", 682 "test/pixel_comparator.cc",
671 "test/pixel_comparator.h", 683 "test/pixel_comparator.h",
672 "test/pixel_test.cc", 684 "test/pixel_test.cc",
673 "test/pixel_test.h", 685 "test/pixel_test.h",
674 "test/pixel_test_delegating_output_surface.cc", 686 "test/pixel_test_delegating_output_surface.cc",
675 "test/pixel_test_delegating_output_surface.h", 687 "test/pixel_test_delegating_output_surface.h",
676 "test/pixel_test_output_surface.cc", 688 "test/pixel_test_output_surface.cc",
677 "test/pixel_test_output_surface.h", 689 "test/pixel_test_output_surface.h",
678 "test/pixel_test_software_output_device.cc", 690 "test/pixel_test_software_output_device.cc",
679 "test/pixel_test_software_output_device.h", 691 "test/pixel_test_software_output_device.h",
(...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after
785 "base/histograms_unittest.cc", 797 "base/histograms_unittest.cc",
786 "base/list_container_unittest.cc", 798 "base/list_container_unittest.cc",
787 "base/math_util_unittest.cc", 799 "base/math_util_unittest.cc",
788 "base/random_access_list_container_unittest.cc", 800 "base/random_access_list_container_unittest.cc",
789 "base/region_unittest.cc", 801 "base/region_unittest.cc",
790 "base/rolling_time_delta_history_unittest.cc", 802 "base/rolling_time_delta_history_unittest.cc",
791 "base/rtree_unittest.cc", 803 "base/rtree_unittest.cc",
792 "base/simple_enclosed_region_unittest.cc", 804 "base/simple_enclosed_region_unittest.cc",
793 "base/tiling_data_unittest.cc", 805 "base/tiling_data_unittest.cc",
794 "base/unique_notifier_unittest.cc", 806 "base/unique_notifier_unittest.cc",
807 "blimp/picture_data_conversions_unittest.cc",
795 "debug/layer_tree_debug_state_unittest.cc", 808 "debug/layer_tree_debug_state_unittest.cc",
796 "debug/micro_benchmark_controller_unittest.cc", 809 "debug/micro_benchmark_controller_unittest.cc",
797 "debug/rendering_stats_unittest.cc", 810 "debug/rendering_stats_unittest.cc",
798 "input/layer_selection_bound_unittest.cc", 811 "input/layer_selection_bound_unittest.cc",
799 "input/scroll_state_unittest.cc", 812 "input/scroll_state_unittest.cc",
800 "input/scrollbar_animation_controller_linear_fade_unittest.cc", 813 "input/scrollbar_animation_controller_linear_fade_unittest.cc",
801 "input/scrollbar_animation_controller_thinning_unittest.cc", 814 "input/scrollbar_animation_controller_thinning_unittest.cc",
802 "input/top_controls_manager_unittest.cc", 815 "input/top_controls_manager_unittest.cc",
803 "ipc/cc_param_traits_unittest.cc", 816 "ipc/cc_param_traits_unittest.cc",
804 "ipc/struct_traits_unittest.cc", 817 "ipc/struct_traits_unittest.cc",
(...skipping 210 matching lines...) Expand 10 before | Expand all | Expand 10 after
1015 "//ui/gfx/geometry", 1028 "//ui/gfx/geometry",
1016 "//ui/gl", 1029 "//ui/gl",
1017 "//ui/gl:test_support", 1030 "//ui/gl:test_support",
1018 ] 1031 ]
1019 1032
1020 # This target should not require the Chrome executable to run. 1033 # This target should not require the Chrome executable to run.
1021 assert_no_deps = [ "//chrome" ] 1034 assert_no_deps = [ "//chrome" ]
1022 } 1035 }
1023 # When adding support for isolates, please have a look at run-time dependencies 1036 # When adding support for isolates, please have a look at run-time dependencies
1024 # in the cc_unittests_run target in cc_tests.gyp. 1037 # in the cc_unittests_run target in cc_tests.gyp.
OLDNEW
« no previous file with comments | « blimp/test/support/compositor/picture_cache_test_support.cc ('k') | cc/blimp/client_picture_cache.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698