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

Side by Side Diff: cc/BUILD.gn

Issue 2362073002: cc/blimp: Add a LayerTreeHostRemote implementation. (Closed)
Patch Set: Rebase Created 4 years, 2 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 25 matching lines...) Expand all
36 "animation/scroll_offset_animations_impl.h", 36 "animation/scroll_offset_animations_impl.h",
37 "animation/target_property.cc", 37 "animation/target_property.cc",
38 "animation/target_property.h", 38 "animation/target_property.h",
39 "animation/timing_function.cc", 39 "animation/timing_function.cc",
40 "animation/timing_function.h", 40 "animation/timing_function.h",
41 "animation/transform_operation.cc", 41 "animation/transform_operation.cc",
42 "animation/transform_operation.h", 42 "animation/transform_operation.h",
43 "animation/transform_operations.cc", 43 "animation/transform_operations.cc",
44 "animation/transform_operations.h", 44 "animation/transform_operations.h",
45 "blimp/client_picture_cache.h", 45 "blimp/client_picture_cache.h",
46 "blimp/compositor_proto_state.cc",
47 "blimp/compositor_proto_state.h",
46 "blimp/engine_picture_cache.h", 48 "blimp/engine_picture_cache.h",
47 "blimp/image_serialization_processor.h", 49 "blimp/image_serialization_processor.h",
50 "blimp/layer_tree_host_remote.cc",
51 "blimp/layer_tree_host_remote.h",
48 "blimp/picture_data.cc", 52 "blimp/picture_data.cc",
49 "blimp/picture_data.h", 53 "blimp/picture_data.h",
50 "blimp/picture_data_conversions.cc", 54 "blimp/picture_data_conversions.cc",
51 "blimp/picture_data_conversions.h", 55 "blimp/picture_data_conversions.h",
56 "blimp/remote_compositor_bridge.cc",
57 "blimp/remote_compositor_bridge.h",
58 "blimp/remote_compositor_bridge_client.h",
52 "debug/benchmark_instrumentation.cc", 59 "debug/benchmark_instrumentation.cc",
53 "debug/benchmark_instrumentation.h", 60 "debug/benchmark_instrumentation.h",
54 "debug/debug_colors.cc", 61 "debug/debug_colors.cc",
55 "debug/debug_colors.h", 62 "debug/debug_colors.h",
56 "debug/debug_rect_history.cc", 63 "debug/debug_rect_history.cc",
57 "debug/debug_rect_history.h", 64 "debug/debug_rect_history.h",
58 "debug/devtools_instrumentation.h", 65 "debug/devtools_instrumentation.h",
59 "debug/frame_rate_counter.cc", 66 "debug/frame_rate_counter.cc",
60 "debug/frame_rate_counter.h", 67 "debug/frame_rate_counter.h",
61 "debug/frame_viewer_instrumentation.cc", 68 "debug/frame_viewer_instrumentation.cc",
(...skipping 595 matching lines...) Expand 10 before | Expand all | Expand 10 after
657 "test/fake_picture_layer_tiling_client.cc", 664 "test/fake_picture_layer_tiling_client.cc",
658 "test/fake_picture_layer_tiling_client.h", 665 "test/fake_picture_layer_tiling_client.h",
659 "test/fake_proxy.cc", 666 "test/fake_proxy.cc",
660 "test/fake_proxy.h", 667 "test/fake_proxy.h",
661 "test/fake_raster_buffer_provider.cc", 668 "test/fake_raster_buffer_provider.cc",
662 "test/fake_raster_buffer_provider.h", 669 "test/fake_raster_buffer_provider.h",
663 "test/fake_raster_source.cc", 670 "test/fake_raster_source.cc",
664 "test/fake_raster_source.h", 671 "test/fake_raster_source.h",
665 "test/fake_recording_source.cc", 672 "test/fake_recording_source.cc",
666 "test/fake_recording_source.h", 673 "test/fake_recording_source.h",
674 "test/fake_remote_compositor_bridge.cc",
675 "test/fake_remote_compositor_bridge.h",
667 "test/fake_rendering_stats_instrumentation.h", 676 "test/fake_rendering_stats_instrumentation.h",
668 "test/fake_resource_provider.h", 677 "test/fake_resource_provider.h",
669 "test/fake_scoped_ui_resource.cc", 678 "test/fake_scoped_ui_resource.cc",
670 "test/fake_scoped_ui_resource.h", 679 "test/fake_scoped_ui_resource.h",
671 "test/fake_scrollbar.cc", 680 "test/fake_scrollbar.cc",
672 "test/fake_scrollbar.h", 681 "test/fake_scrollbar.h",
673 "test/fake_tile_manager.cc", 682 "test/fake_tile_manager.cc",
674 "test/fake_tile_manager.h", 683 "test/fake_tile_manager.h",
675 "test/fake_tile_manager_client.cc", 684 "test/fake_tile_manager_client.cc",
676 "test/fake_tile_manager_client.h", 685 "test/fake_tile_manager_client.h",
(...skipping 145 matching lines...) Expand 10 before | Expand all | Expand 10 after
822 "base/list_container_unittest.cc", 831 "base/list_container_unittest.cc",
823 "base/math_util_unittest.cc", 832 "base/math_util_unittest.cc",
824 "base/random_access_list_container_unittest.cc", 833 "base/random_access_list_container_unittest.cc",
825 "base/region_unittest.cc", 834 "base/region_unittest.cc",
826 "base/rolling_time_delta_history_unittest.cc", 835 "base/rolling_time_delta_history_unittest.cc",
827 "base/rtree_unittest.cc", 836 "base/rtree_unittest.cc",
828 "base/simple_enclosed_region_unittest.cc", 837 "base/simple_enclosed_region_unittest.cc",
829 "base/spiral_iterator_unittest.cc", 838 "base/spiral_iterator_unittest.cc",
830 "base/tiling_data_unittest.cc", 839 "base/tiling_data_unittest.cc",
831 "base/unique_notifier_unittest.cc", 840 "base/unique_notifier_unittest.cc",
841 "blimp/layer_tree_host_remote_unittest.cc",
832 "blimp/picture_data_conversions_unittest.cc", 842 "blimp/picture_data_conversions_unittest.cc",
833 "debug/layer_tree_debug_state_unittest.cc", 843 "debug/layer_tree_debug_state_unittest.cc",
834 "debug/micro_benchmark_controller_unittest.cc", 844 "debug/micro_benchmark_controller_unittest.cc",
835 "debug/rendering_stats_unittest.cc", 845 "debug/rendering_stats_unittest.cc",
836 "input/layer_selection_bound_unittest.cc", 846 "input/layer_selection_bound_unittest.cc",
837 "input/scroll_state_unittest.cc", 847 "input/scroll_state_unittest.cc",
838 "input/scrollbar_animation_controller_linear_fade_unittest.cc", 848 "input/scrollbar_animation_controller_linear_fade_unittest.cc",
839 "input/scrollbar_animation_controller_thinning_unittest.cc", 849 "input/scrollbar_animation_controller_thinning_unittest.cc",
840 "input/top_controls_manager_unittest.cc", 850 "input/top_controls_manager_unittest.cc",
841 "ipc/cc_param_traits_unittest.cc", 851 "ipc/cc_param_traits_unittest.cc",
(...skipping 218 matching lines...) Expand 10 before | Expand all | Expand 10 after
1060 "//ui/gl:test_support", 1070 "//ui/gl:test_support",
1061 ] 1071 ]
1062 1072
1063 # This target should not require the Chrome executable to run. 1073 # This target should not require the Chrome executable to run.
1064 assert_no_deps = [ "//chrome" ] 1074 assert_no_deps = [ "//chrome" ]
1065 1075
1066 data = [ 1076 data = [
1067 "test/data/", 1077 "test/data/",
1068 ] 1078 ]
1069 } 1079 }
OLDNEW
« no previous file with comments | « no previous file | cc/blimp/compositor_proto_state.h » ('j') | cc/blimp/layer_tree_host_remote_unittest.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698