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

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: merge origin/master 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 289 matching lines...) Expand 10 before | Expand all | Expand 10 after
300 "playback/recording_source.cc", 300 "playback/recording_source.cc",
301 "playback/recording_source.h", 301 "playback/recording_source.h",
302 "playback/skip_image_canvas.cc", 302 "playback/skip_image_canvas.cc",
303 "playback/skip_image_canvas.h", 303 "playback/skip_image_canvas.h",
304 "playback/transform_display_item.cc", 304 "playback/transform_display_item.cc",
305 "playback/transform_display_item.h", 305 "playback/transform_display_item.h",
306 "proto/base_conversions.cc", 306 "proto/base_conversions.cc",
307 "proto/base_conversions.h", 307 "proto/base_conversions.h",
308 "proto/cc_conversions.cc", 308 "proto/cc_conversions.cc",
309 "proto/cc_conversions.h", 309 "proto/cc_conversions.h",
310 "proto/client_picture_cache.h",
311 "proto/engine_picture_cache.h",
310 "proto/gfx_conversions.cc", 312 "proto/gfx_conversions.cc",
311 "proto/gfx_conversions.h", 313 "proto/gfx_conversions.h",
312 "proto/gpu_conversions.cc", 314 "proto/gpu_conversions.cc",
313 "proto/gpu_conversions.h", 315 "proto/gpu_conversions.h",
314 "proto/image_serialization_processor.h", 316 "proto/image_serialization_processor.h",
317 "proto/picture_data.cc",
318 "proto/picture_data.h",
319 "proto/picture_data_conversions.cc",
320 "proto/picture_data_conversions.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 168 matching lines...) Expand 10 before | Expand all | Expand 10 after
848 "output/software_renderer_unittest.cc", 860 "output/software_renderer_unittest.cc",
849 "output/texture_mailbox_deleter_unittest.cc", 861 "output/texture_mailbox_deleter_unittest.cc",
850 "playback/discardable_image_map_unittest.cc", 862 "playback/discardable_image_map_unittest.cc",
851 "playback/display_item_list_unittest.cc", 863 "playback/display_item_list_unittest.cc",
852 "playback/raster_source_unittest.cc", 864 "playback/raster_source_unittest.cc",
853 "playback/recording_source_unittest.cc", 865 "playback/recording_source_unittest.cc",
854 "proto/base_conversions_unittest.cc", 866 "proto/base_conversions_unittest.cc",
855 "proto/cc_conversions_unittest.cc", 867 "proto/cc_conversions_unittest.cc",
856 "proto/gfx_conversions_unittest.cc", 868 "proto/gfx_conversions_unittest.cc",
857 "proto/gpu_conversions_unittest.cc", 869 "proto/gpu_conversions_unittest.cc",
870 "proto/picture_data_conversions_unittest.cc",
858 "proto/skia_conversions_unittest.cc", 871 "proto/skia_conversions_unittest.cc",
859 "proto/synced_property_conversions_unittest.cc", 872 "proto/synced_property_conversions_unittest.cc",
860 "quads/draw_polygon_unittest.cc", 873 "quads/draw_polygon_unittest.cc",
861 "quads/draw_quad_unittest.cc", 874 "quads/draw_quad_unittest.cc",
862 "quads/render_pass_unittest.cc", 875 "quads/render_pass_unittest.cc",
863 "raster/raster_buffer_provider_unittest.cc", 876 "raster/raster_buffer_provider_unittest.cc",
864 "raster/scoped_gpu_raster_unittest.cc", 877 "raster/scoped_gpu_raster_unittest.cc",
865 "raster/single_thread_task_graph_runner_unittest.cc", 878 "raster/single_thread_task_graph_runner_unittest.cc",
866 "raster/synchronous_task_graph_runner_unittest.cc", 879 "raster/synchronous_task_graph_runner_unittest.cc",
867 "raster/texture_compressor_etc1_unittest.cc", 880 "raster/texture_compressor_etc1_unittest.cc",
(...skipping 147 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

Powered by Google App Engine
This is Rietveld 408576698