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

Side by Side Diff: cc/BUILD.gn

Issue 1837263005: cc: Rename DisplayListRasterSource to just RasterSource. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 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
« no previous file with comments | « no previous file | cc/cc.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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("//testing/test.gni") 5 import("//testing/test.gni")
6 6
7 component("cc") { 7 component("cc") {
8 sources = [ 8 sources = [
9 "animation/animation.cc", 9 "animation/animation.cc",
10 "animation/animation.h", 10 "animation/animation.h",
(...skipping 275 matching lines...) Expand 10 before | Expand all | Expand 10 after
286 "playback/discardable_image_map.cc", 286 "playback/discardable_image_map.cc",
287 "playback/discardable_image_map.h", 287 "playback/discardable_image_map.h",
288 "playback/display_item.cc", 288 "playback/display_item.cc",
289 "playback/display_item.h", 289 "playback/display_item.h",
290 "playback/display_item_list.cc", 290 "playback/display_item_list.cc",
291 "playback/display_item_list.h", 291 "playback/display_item_list.h",
292 "playback/display_item_list_settings.cc", 292 "playback/display_item_list_settings.cc",
293 "playback/display_item_list_settings.h", 293 "playback/display_item_list_settings.h",
294 "playback/display_item_proto_factory.cc", 294 "playback/display_item_proto_factory.cc",
295 "playback/display_item_proto_factory.h", 295 "playback/display_item_proto_factory.h",
296 "playback/display_list_raster_source.cc",
297 "playback/display_list_raster_source.h",
298 "playback/display_list_recording_source.cc", 296 "playback/display_list_recording_source.cc",
299 "playback/display_list_recording_source.h", 297 "playback/display_list_recording_source.h",
300 "playback/draw_image.cc", 298 "playback/draw_image.cc",
301 "playback/draw_image.h", 299 "playback/draw_image.h",
302 "playback/drawing_display_item.cc", 300 "playback/drawing_display_item.cc",
303 "playback/drawing_display_item.h", 301 "playback/drawing_display_item.h",
304 "playback/filter_display_item.cc", 302 "playback/filter_display_item.cc",
305 "playback/filter_display_item.h", 303 "playback/filter_display_item.h",
306 "playback/float_clip_display_item.cc", 304 "playback/float_clip_display_item.cc",
307 "playback/float_clip_display_item.h", 305 "playback/float_clip_display_item.h",
308 "playback/image_hijack_canvas.cc", 306 "playback/image_hijack_canvas.cc",
309 "playback/image_hijack_canvas.h", 307 "playback/image_hijack_canvas.h",
310 "playback/largest_display_item.cc", 308 "playback/largest_display_item.cc",
311 "playback/largest_display_item.h", 309 "playback/largest_display_item.h",
310 "playback/raster_source.cc",
311 "playback/raster_source.h",
312 "playback/skip_image_canvas.cc", 312 "playback/skip_image_canvas.cc",
313 "playback/skip_image_canvas.h", 313 "playback/skip_image_canvas.h",
314 "playback/transform_display_item.cc", 314 "playback/transform_display_item.cc",
315 "playback/transform_display_item.h", 315 "playback/transform_display_item.h",
316 "proto/base_conversions.cc", 316 "proto/base_conversions.cc",
317 "proto/base_conversions.h", 317 "proto/base_conversions.h",
318 "proto/cc_conversions.cc", 318 "proto/cc_conversions.cc",
319 "proto/cc_conversions.h", 319 "proto/cc_conversions.h",
320 "proto/gfx_conversions.cc", 320 "proto/gfx_conversions.cc",
321 "proto/gfx_conversions.h", 321 "proto/gfx_conversions.h",
(...skipping 257 matching lines...) Expand 10 before | Expand all | Expand 10 after
579 "test/begin_frame_args_test.cc", 579 "test/begin_frame_args_test.cc",
580 "test/begin_frame_args_test.h", 580 "test/begin_frame_args_test.h",
581 "test/begin_frame_source_test.cc", 581 "test/begin_frame_source_test.cc",
582 "test/begin_frame_source_test.h", 582 "test/begin_frame_source_test.h",
583 "test/failure_output_surface.cc", 583 "test/failure_output_surface.cc",
584 "test/failure_output_surface.h", 584 "test/failure_output_surface.h",
585 "test/fake_channel_impl.cc", 585 "test/fake_channel_impl.cc",
586 "test/fake_channel_impl.h", 586 "test/fake_channel_impl.h",
587 "test/fake_content_layer_client.cc", 587 "test/fake_content_layer_client.cc",
588 "test/fake_content_layer_client.h", 588 "test/fake_content_layer_client.h",
589 "test/fake_display_list_raster_source.cc",
590 "test/fake_display_list_raster_source.h",
591 "test/fake_display_list_recording_source.cc", 589 "test/fake_display_list_recording_source.cc",
592 "test/fake_display_list_recording_source.h", 590 "test/fake_display_list_recording_source.h",
593 "test/fake_external_begin_frame_source.cc", 591 "test/fake_external_begin_frame_source.cc",
594 "test/fake_external_begin_frame_source.h", 592 "test/fake_external_begin_frame_source.h",
595 "test/fake_image_serialization_processor.cc", 593 "test/fake_image_serialization_processor.cc",
596 "test/fake_image_serialization_processor.h", 594 "test/fake_image_serialization_processor.h",
597 "test/fake_impl_task_runner_provider.h", 595 "test/fake_impl_task_runner_provider.h",
598 "test/fake_layer_tree_host.cc", 596 "test/fake_layer_tree_host.cc",
599 "test/fake_layer_tree_host.h", 597 "test/fake_layer_tree_host.h",
600 "test/fake_layer_tree_host_client.cc", 598 "test/fake_layer_tree_host_client.cc",
(...skipping 11 matching lines...) Expand all
612 "test/fake_painted_scrollbar_layer.cc", 610 "test/fake_painted_scrollbar_layer.cc",
613 "test/fake_painted_scrollbar_layer.h", 611 "test/fake_painted_scrollbar_layer.h",
614 "test/fake_picture_layer.cc", 612 "test/fake_picture_layer.cc",
615 "test/fake_picture_layer.h", 613 "test/fake_picture_layer.h",
616 "test/fake_picture_layer_impl.cc", 614 "test/fake_picture_layer_impl.cc",
617 "test/fake_picture_layer_impl.h", 615 "test/fake_picture_layer_impl.h",
618 "test/fake_picture_layer_tiling_client.cc", 616 "test/fake_picture_layer_tiling_client.cc",
619 "test/fake_picture_layer_tiling_client.h", 617 "test/fake_picture_layer_tiling_client.h",
620 "test/fake_proxy.cc", 618 "test/fake_proxy.cc",
621 "test/fake_proxy.h", 619 "test/fake_proxy.h",
620 "test/fake_raster_source.cc",
621 "test/fake_raster_source.h",
622 "test/fake_renderer_client.cc", 622 "test/fake_renderer_client.cc",
623 "test/fake_renderer_client.h", 623 "test/fake_renderer_client.h",
624 "test/fake_rendering_stats_instrumentation.h", 624 "test/fake_rendering_stats_instrumentation.h",
625 "test/fake_resource_provider.h", 625 "test/fake_resource_provider.h",
626 "test/fake_scoped_ui_resource.cc", 626 "test/fake_scoped_ui_resource.cc",
627 "test/fake_scoped_ui_resource.h", 627 "test/fake_scoped_ui_resource.h",
628 "test/fake_scrollbar.cc", 628 "test/fake_scrollbar.cc",
629 "test/fake_scrollbar.h", 629 "test/fake_scrollbar.h",
630 "test/fake_tile_manager.cc", 630 "test/fake_tile_manager.cc",
631 "test/fake_tile_manager.h", 631 "test/fake_tile_manager.h",
(...skipping 194 matching lines...) Expand 10 before | Expand all | Expand 10 after
826 "output/output_surface_unittest.cc", 826 "output/output_surface_unittest.cc",
827 "output/overlay_unittest.cc", 827 "output/overlay_unittest.cc",
828 "output/renderer_pixeltest.cc", 828 "output/renderer_pixeltest.cc",
829 "output/renderer_settings_unittest.cc", 829 "output/renderer_settings_unittest.cc",
830 "output/renderer_unittest.cc", 830 "output/renderer_unittest.cc",
831 "output/shader_unittest.cc", 831 "output/shader_unittest.cc",
832 "output/software_renderer_unittest.cc", 832 "output/software_renderer_unittest.cc",
833 "output/texture_mailbox_deleter_unittest.cc", 833 "output/texture_mailbox_deleter_unittest.cc",
834 "playback/discardable_image_map_unittest.cc", 834 "playback/discardable_image_map_unittest.cc",
835 "playback/display_item_list_unittest.cc", 835 "playback/display_item_list_unittest.cc",
836 "playback/display_list_raster_source_unittest.cc",
837 "playback/display_list_recording_source_unittest.cc", 836 "playback/display_list_recording_source_unittest.cc",
837 "playback/raster_source_unittest.cc",
838 "proto/base_conversions_unittest.cc", 838 "proto/base_conversions_unittest.cc",
839 "proto/cc_conversions_unittest.cc", 839 "proto/cc_conversions_unittest.cc",
840 "proto/gfx_conversions_unittest.cc", 840 "proto/gfx_conversions_unittest.cc",
841 "proto/gpu_conversions_unittest.cc", 841 "proto/gpu_conversions_unittest.cc",
842 "proto/skia_conversions_unittest.cc", 842 "proto/skia_conversions_unittest.cc",
843 "proto/synced_property_conversions_unittest.cc", 843 "proto/synced_property_conversions_unittest.cc",
844 "quads/draw_polygon_unittest.cc", 844 "quads/draw_polygon_unittest.cc",
845 "quads/draw_quad_unittest.cc", 845 "quads/draw_quad_unittest.cc",
846 "quads/render_pass_unittest.cc", 846 "quads/render_pass_unittest.cc",
847 "raster/scoped_gpu_raster_unittest.cc", 847 "raster/scoped_gpu_raster_unittest.cc",
(...skipping 144 matching lines...) Expand 10 before | Expand all | Expand 10 after
992 "//ui/gl", 992 "//ui/gl",
993 "//ui/gl:test_support", 993 "//ui/gl:test_support",
994 ] 994 ]
995 995
996 if (is_android) { 996 if (is_android) {
997 isolate_file = "cc_perftests.isolate" 997 isolate_file = "cc_perftests.isolate"
998 } 998 }
999 } 999 }
1000 # When adding support for isolates, please have a look at run-time dependencies 1000 # When adding support for isolates, please have a look at run-time dependencies
1001 # in the cc_unittests_run target in cc_tests.gyp. 1001 # in the cc_unittests_run target in cc_tests.gyp.
OLDNEW
« no previous file with comments | « no previous file | cc/cc.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698