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

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: git 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 296 matching lines...) Expand 10 before | Expand all | Expand 10 after
307 "playback/transform_display_item.h", 307 "playback/transform_display_item.h",
308 "proto/base_conversions.cc", 308 "proto/base_conversions.cc",
309 "proto/base_conversions.h", 309 "proto/base_conversions.h",
310 "proto/cc_conversions.cc", 310 "proto/cc_conversions.cc",
311 "proto/cc_conversions.h", 311 "proto/cc_conversions.h",
312 "proto/gfx_conversions.cc", 312 "proto/gfx_conversions.cc",
313 "proto/gfx_conversions.h", 313 "proto/gfx_conversions.h",
314 "proto/gpu_conversions.cc", 314 "proto/gpu_conversions.cc",
315 "proto/gpu_conversions.h", 315 "proto/gpu_conversions.h",
316 "proto/image_serialization_processor.h", 316 "proto/image_serialization_processor.h",
317 "proto/picture_cache.cc",
318 "proto/picture_cache.h",
319 "proto/picture_cache_conversions.cc",
320 "proto/picture_cache_conversions.h",
317 "proto/skia_conversions.cc", 321 "proto/skia_conversions.cc",
318 "proto/skia_conversions.h", 322 "proto/skia_conversions.h",
319 "proto/synced_property_conversions.cc", 323 "proto/synced_property_conversions.cc",
320 "proto/synced_property_conversions.h", 324 "proto/synced_property_conversions.h",
321 "quads/content_draw_quad_base.cc", 325 "quads/content_draw_quad_base.cc",
322 "quads/content_draw_quad_base.h", 326 "quads/content_draw_quad_base.h",
323 "quads/debug_border_draw_quad.cc", 327 "quads/debug_border_draw_quad.cc",
324 "quads/debug_border_draw_quad.h", 328 "quads/debug_border_draw_quad.h",
325 "quads/draw_polygon.cc", 329 "quads/draw_polygon.cc",
326 "quads/draw_polygon.h", 330 "quads/draw_polygon.h",
(...skipping 279 matching lines...) Expand 10 before | Expand all | Expand 10 after
606 "test/fake_layer_tree_host_impl_client.cc", 610 "test/fake_layer_tree_host_impl_client.cc",
607 "test/fake_layer_tree_host_impl_client.h", 611 "test/fake_layer_tree_host_impl_client.h",
608 "test/fake_mask_layer_impl.cc", 612 "test/fake_mask_layer_impl.cc",
609 "test/fake_mask_layer_impl.h", 613 "test/fake_mask_layer_impl.h",
610 "test/fake_output_surface.cc", 614 "test/fake_output_surface.cc",
611 "test/fake_output_surface.h", 615 "test/fake_output_surface.h",
612 "test/fake_output_surface_client.cc", 616 "test/fake_output_surface_client.cc",
613 "test/fake_output_surface_client.h", 617 "test/fake_output_surface_client.h",
614 "test/fake_painted_scrollbar_layer.cc", 618 "test/fake_painted_scrollbar_layer.cc",
615 "test/fake_painted_scrollbar_layer.h", 619 "test/fake_painted_scrollbar_layer.h",
620 "test/fake_picture_cache.cc",
621 "test/fake_picture_cache.h",
616 "test/fake_picture_layer.cc", 622 "test/fake_picture_layer.cc",
617 "test/fake_picture_layer.h", 623 "test/fake_picture_layer.h",
618 "test/fake_picture_layer_impl.cc", 624 "test/fake_picture_layer_impl.cc",
619 "test/fake_picture_layer_impl.h", 625 "test/fake_picture_layer_impl.h",
620 "test/fake_picture_layer_tiling_client.cc", 626 "test/fake_picture_layer_tiling_client.cc",
621 "test/fake_picture_layer_tiling_client.h", 627 "test/fake_picture_layer_tiling_client.h",
622 "test/fake_proxy.cc", 628 "test/fake_proxy.cc",
623 "test/fake_proxy.h", 629 "test/fake_proxy.h",
624 "test/fake_raster_buffer_provider.cc", 630 "test/fake_raster_buffer_provider.cc",
625 "test/fake_raster_buffer_provider.h", 631 "test/fake_raster_buffer_provider.h",
(...skipping 221 matching lines...) Expand 10 before | Expand all | Expand 10 after
847 "output/software_renderer_unittest.cc", 853 "output/software_renderer_unittest.cc",
848 "output/texture_mailbox_deleter_unittest.cc", 854 "output/texture_mailbox_deleter_unittest.cc",
849 "playback/discardable_image_map_unittest.cc", 855 "playback/discardable_image_map_unittest.cc",
850 "playback/display_item_list_unittest.cc", 856 "playback/display_item_list_unittest.cc",
851 "playback/raster_source_unittest.cc", 857 "playback/raster_source_unittest.cc",
852 "playback/recording_source_unittest.cc", 858 "playback/recording_source_unittest.cc",
853 "proto/base_conversions_unittest.cc", 859 "proto/base_conversions_unittest.cc",
854 "proto/cc_conversions_unittest.cc", 860 "proto/cc_conversions_unittest.cc",
855 "proto/gfx_conversions_unittest.cc", 861 "proto/gfx_conversions_unittest.cc",
856 "proto/gpu_conversions_unittest.cc", 862 "proto/gpu_conversions_unittest.cc",
863 "proto/picture_cache_conversions_unittest.cc",
857 "proto/skia_conversions_unittest.cc", 864 "proto/skia_conversions_unittest.cc",
858 "proto/synced_property_conversions_unittest.cc", 865 "proto/synced_property_conversions_unittest.cc",
859 "quads/draw_polygon_unittest.cc", 866 "quads/draw_polygon_unittest.cc",
860 "quads/draw_quad_unittest.cc", 867 "quads/draw_quad_unittest.cc",
861 "quads/render_pass_unittest.cc", 868 "quads/render_pass_unittest.cc",
862 "raster/raster_buffer_provider_unittest.cc", 869 "raster/raster_buffer_provider_unittest.cc",
863 "raster/scoped_gpu_raster_unittest.cc", 870 "raster/scoped_gpu_raster_unittest.cc",
864 "raster/single_thread_task_graph_runner_unittest.cc", 871 "raster/single_thread_task_graph_runner_unittest.cc",
865 "raster/synchronous_task_graph_runner_unittest.cc", 872 "raster/synchronous_task_graph_runner_unittest.cc",
866 "raster/texture_compressor_etc1_unittest.cc", 873 "raster/texture_compressor_etc1_unittest.cc",
(...skipping 147 matching lines...) Expand 10 before | Expand all | Expand 10 after
1014 "//ui/gfx/geometry", 1021 "//ui/gfx/geometry",
1015 "//ui/gl", 1022 "//ui/gl",
1016 "//ui/gl:test_support", 1023 "//ui/gl:test_support",
1017 ] 1024 ]
1018 1025
1019 # This target should not require the Chrome executable to run. 1026 # This target should not require the Chrome executable to run.
1020 assert_no_deps = [ "//chrome" ] 1027 assert_no_deps = [ "//chrome" ]
1021 } 1028 }
1022 # When adding support for isolates, please have a look at run-time dependencies 1029 # When adding support for isolates, please have a look at run-time dependencies
1023 # in the cc_unittests_run target in cc_tests.gyp. 1030 # in the cc_unittests_run target in cc_tests.gyp.
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698