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

Side by Side Diff: cc/BUILD.gn

Issue 2375363002: cc/blimp: Set up the framework for state serialization. (Closed)
Patch Set: tests 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 27 matching lines...) Expand all
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", 46 "blimp/compositor_proto_state.cc",
47 "blimp/compositor_proto_state.h", 47 "blimp/compositor_proto_state.h",
48 "blimp/compositor_state_deserializer.cc",
49 "blimp/compositor_state_deserializer.h",
50 "blimp/compositor_state_deserializer_client.h",
48 "blimp/engine_picture_cache.h", 51 "blimp/engine_picture_cache.h",
49 "blimp/image_serialization_processor.h", 52 "blimp/image_serialization_processor.h",
53 "blimp/layer_factory.h",
50 "blimp/layer_tree_host_remote.cc", 54 "blimp/layer_tree_host_remote.cc",
51 "blimp/layer_tree_host_remote.h", 55 "blimp/layer_tree_host_remote.h",
52 "blimp/picture_data.cc", 56 "blimp/picture_data.cc",
53 "blimp/picture_data.h", 57 "blimp/picture_data.h",
54 "blimp/picture_data_conversions.cc", 58 "blimp/picture_data_conversions.cc",
55 "blimp/picture_data_conversions.h", 59 "blimp/picture_data_conversions.h",
56 "blimp/remote_compositor_bridge.cc", 60 "blimp/remote_compositor_bridge.cc",
57 "blimp/remote_compositor_bridge.h", 61 "blimp/remote_compositor_bridge.h",
58 "blimp/remote_compositor_bridge_client.h", 62 "blimp/remote_compositor_bridge_client.h",
59 "debug/benchmark_instrumentation.cc", 63 "debug/benchmark_instrumentation.cc",
(...skipping 658 matching lines...) Expand 10 before | Expand all | Expand 10 after
718 "test/pixel_comparator.cc", 722 "test/pixel_comparator.cc",
719 "test/pixel_comparator.h", 723 "test/pixel_comparator.h",
720 "test/pixel_test.cc", 724 "test/pixel_test.cc",
721 "test/pixel_test.h", 725 "test/pixel_test.h",
722 "test/pixel_test_output_surface.cc", 726 "test/pixel_test_output_surface.cc",
723 "test/pixel_test_output_surface.h", 727 "test/pixel_test_output_surface.h",
724 "test/pixel_test_software_output_device.cc", 728 "test/pixel_test_software_output_device.cc",
725 "test/pixel_test_software_output_device.h", 729 "test/pixel_test_software_output_device.h",
726 "test/pixel_test_utils.cc", 730 "test/pixel_test_utils.cc",
727 "test/pixel_test_utils.h", 731 "test/pixel_test_utils.h",
732 "test/remote_client_layer_factory.cc",
733 "test/remote_client_layer_factory.h",
728 "test/remote_proto_channel_bridge.cc", 734 "test/remote_proto_channel_bridge.cc",
729 "test/remote_proto_channel_bridge.h", 735 "test/remote_proto_channel_bridge.h",
730 "test/render_pass_test_utils.cc", 736 "test/render_pass_test_utils.cc",
731 "test/render_pass_test_utils.h", 737 "test/render_pass_test_utils.h",
732 "test/scheduler_test_common.cc", 738 "test/scheduler_test_common.cc",
733 "test/scheduler_test_common.h", 739 "test/scheduler_test_common.h",
734 "test/skia_common.cc", 740 "test/skia_common.cc",
735 "test/skia_common.h", 741 "test/skia_common.h",
736 "test/solid_color_content_layer_client.cc", 742 "test/solid_color_content_layer_client.cc",
737 "test/solid_color_content_layer_client.h", 743 "test/solid_color_content_layer_client.h",
(...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after
831 "base/list_container_unittest.cc", 837 "base/list_container_unittest.cc",
832 "base/math_util_unittest.cc", 838 "base/math_util_unittest.cc",
833 "base/random_access_list_container_unittest.cc", 839 "base/random_access_list_container_unittest.cc",
834 "base/region_unittest.cc", 840 "base/region_unittest.cc",
835 "base/rolling_time_delta_history_unittest.cc", 841 "base/rolling_time_delta_history_unittest.cc",
836 "base/rtree_unittest.cc", 842 "base/rtree_unittest.cc",
837 "base/simple_enclosed_region_unittest.cc", 843 "base/simple_enclosed_region_unittest.cc",
838 "base/spiral_iterator_unittest.cc", 844 "base/spiral_iterator_unittest.cc",
839 "base/tiling_data_unittest.cc", 845 "base/tiling_data_unittest.cc",
840 "base/unique_notifier_unittest.cc", 846 "base/unique_notifier_unittest.cc",
847 "blimp/compositor_state_deserializer_unittest.cc",
841 "blimp/layer_tree_host_remote_unittest.cc", 848 "blimp/layer_tree_host_remote_unittest.cc",
842 "blimp/picture_data_conversions_unittest.cc", 849 "blimp/picture_data_conversions_unittest.cc",
843 "debug/layer_tree_debug_state_unittest.cc", 850 "debug/layer_tree_debug_state_unittest.cc",
844 "debug/micro_benchmark_controller_unittest.cc", 851 "debug/micro_benchmark_controller_unittest.cc",
845 "debug/rendering_stats_unittest.cc", 852 "debug/rendering_stats_unittest.cc",
846 "input/layer_selection_bound_unittest.cc", 853 "input/layer_selection_bound_unittest.cc",
847 "input/scroll_state_unittest.cc", 854 "input/scroll_state_unittest.cc",
848 "input/scrollbar_animation_controller_linear_fade_unittest.cc", 855 "input/scrollbar_animation_controller_linear_fade_unittest.cc",
849 "input/scrollbar_animation_controller_thinning_unittest.cc", 856 "input/scrollbar_animation_controller_thinning_unittest.cc",
850 "input/top_controls_manager_unittest.cc", 857 "input/top_controls_manager_unittest.cc",
(...skipping 219 matching lines...) Expand 10 before | Expand all | Expand 10 after
1070 "//ui/gl:test_support", 1077 "//ui/gl:test_support",
1071 ] 1078 ]
1072 1079
1073 # This target should not require the Chrome executable to run. 1080 # This target should not require the Chrome executable to run.
1074 assert_no_deps = [ "//chrome" ] 1081 assert_no_deps = [ "//chrome" ]
1075 1082
1076 data = [ 1083 data = [
1077 "test/data/", 1084 "test/data/",
1078 ] 1085 ]
1079 } 1086 }
OLDNEW
« no previous file with comments | « no previous file | cc/blimp/compositor_proto_state.h » ('j') | cc/blimp/compositor_state_deserializer.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698