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

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 299 matching lines...) Expand 10 before | Expand all | Expand 10 after
310 "playback/transform_display_item.h", 310 "playback/transform_display_item.h",
311 "proto/base_conversions.cc", 311 "proto/base_conversions.cc",
312 "proto/base_conversions.h", 312 "proto/base_conversions.h",
313 "proto/cc_conversions.cc", 313 "proto/cc_conversions.cc",
314 "proto/cc_conversions.h", 314 "proto/cc_conversions.h",
315 "proto/gfx_conversions.cc", 315 "proto/gfx_conversions.cc",
316 "proto/gfx_conversions.h", 316 "proto/gfx_conversions.h",
317 "proto/gpu_conversions.cc", 317 "proto/gpu_conversions.cc",
318 "proto/gpu_conversions.h", 318 "proto/gpu_conversions.h",
319 "proto/image_serialization_processor.h", 319 "proto/image_serialization_processor.h",
320 "proto/picture_cache.cc",
321 "proto/picture_cache.h",
322 "proto/picture_cache_conversions.cc",
323 "proto/picture_cache_conversions.h",
320 "proto/skia_conversions.cc", 324 "proto/skia_conversions.cc",
321 "proto/skia_conversions.h", 325 "proto/skia_conversions.h",
322 "proto/synced_property_conversions.cc", 326 "proto/synced_property_conversions.cc",
323 "proto/synced_property_conversions.h", 327 "proto/synced_property_conversions.h",
324 "quads/content_draw_quad_base.cc", 328 "quads/content_draw_quad_base.cc",
325 "quads/content_draw_quad_base.h", 329 "quads/content_draw_quad_base.h",
326 "quads/debug_border_draw_quad.cc", 330 "quads/debug_border_draw_quad.cc",
327 "quads/debug_border_draw_quad.h", 331 "quads/debug_border_draw_quad.h",
328 "quads/draw_polygon.cc", 332 "quads/draw_polygon.cc",
329 "quads/draw_polygon.h", 333 "quads/draw_polygon.h",
(...skipping 277 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 220 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 144 matching lines...) Expand 10 before | Expand all | Expand 10 after
1011 "//ui/gfx/geometry", 1018 "//ui/gfx/geometry",
1012 "//ui/gl", 1019 "//ui/gl",
1013 "//ui/gl:test_support", 1020 "//ui/gl:test_support",
1014 ] 1021 ]
1015 1022
1016 # This target should not require the Chrome executable to run. 1023 # This target should not require the Chrome executable to run.
1017 assert_no_deps = [ "//chrome" ] 1024 assert_no_deps = [ "//chrome" ]
1018 } 1025 }
1019 # When adding support for isolates, please have a look at run-time dependencies 1026 # When adding support for isolates, please have a look at run-time dependencies
1020 # in the cc_unittests_run target in cc_tests.gyp. 1027 # in the cc_unittests_run target in cc_tests.gyp.
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698