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

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: Fix non-existing SkPicture::uniqueID() when dealing with display items without SkPictures 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
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 297 matching lines...) Expand 10 before | Expand all | Expand 10 after
308 "playback/transform_display_item.h", 308 "playback/transform_display_item.h",
309 "proto/base_conversions.cc", 309 "proto/base_conversions.cc",
310 "proto/base_conversions.h", 310 "proto/base_conversions.h",
311 "proto/cc_conversions.cc", 311 "proto/cc_conversions.cc",
312 "proto/cc_conversions.h", 312 "proto/cc_conversions.h",
313 "proto/gfx_conversions.cc", 313 "proto/gfx_conversions.cc",
314 "proto/gfx_conversions.h", 314 "proto/gfx_conversions.h",
315 "proto/gpu_conversions.cc", 315 "proto/gpu_conversions.cc",
316 "proto/gpu_conversions.h", 316 "proto/gpu_conversions.h",
317 "proto/image_serialization_processor.h", 317 "proto/image_serialization_processor.h",
318 "proto/picture_cache.cc",
319 "proto/picture_cache.h",
320 "proto/picture_cache_conversions.cc",
321 "proto/picture_cache_conversions.h",
318 "proto/skia_conversions.cc", 322 "proto/skia_conversions.cc",
319 "proto/skia_conversions.h", 323 "proto/skia_conversions.h",
320 "proto/synced_property_conversions.cc", 324 "proto/synced_property_conversions.cc",
321 "proto/synced_property_conversions.h", 325 "proto/synced_property_conversions.h",
322 "quads/content_draw_quad_base.cc", 326 "quads/content_draw_quad_base.cc",
323 "quads/content_draw_quad_base.h", 327 "quads/content_draw_quad_base.h",
324 "quads/debug_border_draw_quad.cc", 328 "quads/debug_border_draw_quad.cc",
325 "quads/debug_border_draw_quad.h", 329 "quads/debug_border_draw_quad.h",
326 "quads/draw_polygon.cc", 330 "quads/draw_polygon.cc",
327 "quads/draw_polygon.h", 331 "quads/draw_polygon.h",
(...skipping 279 matching lines...) Expand 10 before | Expand all | Expand 10 after
607 "test/fake_layer_tree_host_impl_client.cc", 611 "test/fake_layer_tree_host_impl_client.cc",
608 "test/fake_layer_tree_host_impl_client.h", 612 "test/fake_layer_tree_host_impl_client.h",
609 "test/fake_mask_layer_impl.cc", 613 "test/fake_mask_layer_impl.cc",
610 "test/fake_mask_layer_impl.h", 614 "test/fake_mask_layer_impl.h",
611 "test/fake_output_surface.cc", 615 "test/fake_output_surface.cc",
612 "test/fake_output_surface.h", 616 "test/fake_output_surface.h",
613 "test/fake_output_surface_client.cc", 617 "test/fake_output_surface_client.cc",
614 "test/fake_output_surface_client.h", 618 "test/fake_output_surface_client.h",
615 "test/fake_painted_scrollbar_layer.cc", 619 "test/fake_painted_scrollbar_layer.cc",
616 "test/fake_painted_scrollbar_layer.h", 620 "test/fake_painted_scrollbar_layer.h",
621 "test/fake_picture_cache.cc",
622 "test/fake_picture_cache.h",
617 "test/fake_picture_layer.cc", 623 "test/fake_picture_layer.cc",
618 "test/fake_picture_layer.h", 624 "test/fake_picture_layer.h",
619 "test/fake_picture_layer_impl.cc", 625 "test/fake_picture_layer_impl.cc",
620 "test/fake_picture_layer_impl.h", 626 "test/fake_picture_layer_impl.h",
621 "test/fake_picture_layer_tiling_client.cc", 627 "test/fake_picture_layer_tiling_client.cc",
622 "test/fake_picture_layer_tiling_client.h", 628 "test/fake_picture_layer_tiling_client.h",
623 "test/fake_proxy.cc", 629 "test/fake_proxy.cc",
624 "test/fake_proxy.h", 630 "test/fake_proxy.h",
625 "test/fake_raster_buffer_provider.cc", 631 "test/fake_raster_buffer_provider.cc",
626 "test/fake_raster_buffer_provider.h", 632 "test/fake_raster_buffer_provider.h",
(...skipping 215 matching lines...) Expand 10 before | Expand all | Expand 10 after
842 "output/software_renderer_unittest.cc", 848 "output/software_renderer_unittest.cc",
843 "output/texture_mailbox_deleter_unittest.cc", 849 "output/texture_mailbox_deleter_unittest.cc",
844 "playback/discardable_image_map_unittest.cc", 850 "playback/discardable_image_map_unittest.cc",
845 "playback/display_item_list_unittest.cc", 851 "playback/display_item_list_unittest.cc",
846 "playback/raster_source_unittest.cc", 852 "playback/raster_source_unittest.cc",
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",
858 "proto/picture_cache_conversions_unittest.cc",
852 "proto/skia_conversions_unittest.cc", 859 "proto/skia_conversions_unittest.cc",
853 "proto/synced_property_conversions_unittest.cc", 860 "proto/synced_property_conversions_unittest.cc",
854 "quads/draw_polygon_unittest.cc", 861 "quads/draw_polygon_unittest.cc",
855 "quads/draw_quad_unittest.cc", 862 "quads/draw_quad_unittest.cc",
856 "quads/render_pass_unittest.cc", 863 "quads/render_pass_unittest.cc",
857 "raster/raster_buffer_provider_unittest.cc", 864 "raster/raster_buffer_provider_unittest.cc",
858 "raster/scoped_gpu_raster_unittest.cc", 865 "raster/scoped_gpu_raster_unittest.cc",
859 "raster/single_thread_task_graph_runner_unittest.cc", 866 "raster/single_thread_task_graph_runner_unittest.cc",
860 "raster/synchronous_task_graph_runner_unittest.cc", 867 "raster/synchronous_task_graph_runner_unittest.cc",
861 "raster/texture_compressor_etc1_unittest.cc", 868 "raster/texture_compressor_etc1_unittest.cc",
(...skipping 141 matching lines...) Expand 10 before | Expand all | Expand 10 after
1003 "//ui/gfx/geometry", 1010 "//ui/gfx/geometry",
1004 "//ui/gl", 1011 "//ui/gl",
1005 "//ui/gl:test_support", 1012 "//ui/gl:test_support",
1006 ] 1013 ]
1007 1014
1008 # This target should not require the Chrome executable to run. 1015 # This target should not require the Chrome executable to run.
1009 assert_no_deps = [ "//chrome" ] 1016 assert_no_deps = [ "//chrome" ]
1010 } 1017 }
1011 # When adding support for isolates, please have a look at run-time dependencies 1018 # When adding support for isolates, please have a look at run-time dependencies
1012 # in the cc_unittests_run target in cc_tests.gyp. 1019 # in the cc_unittests_run target in cc_tests.gyp.
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698