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

Side by Side Diff: cc/BUILD.gn

Issue 2397103002: Move SurfaceSequenceGenerator => cc/surfaces (Closed)
Patch Set: Remove export 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
« no previous file with comments | « no previous file | cc/blimp/layer_tree_host_remote.h » ('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("//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 541 matching lines...) Expand 10 before | Expand all | Expand 10 after
552 "trees/remote_channel_impl.cc", 552 "trees/remote_channel_impl.cc",
553 "trees/remote_channel_impl.h", 553 "trees/remote_channel_impl.h",
554 "trees/remote_channel_main.cc", 554 "trees/remote_channel_main.cc",
555 "trees/remote_channel_main.h", 555 "trees/remote_channel_main.h",
556 "trees/remote_proto_channel.h", 556 "trees/remote_proto_channel.h",
557 "trees/scoped_abort_remaining_swap_promises.h", 557 "trees/scoped_abort_remaining_swap_promises.h",
558 "trees/scroll_node.cc", 558 "trees/scroll_node.cc",
559 "trees/scroll_node.h", 559 "trees/scroll_node.h",
560 "trees/single_thread_proxy.cc", 560 "trees/single_thread_proxy.cc",
561 "trees/single_thread_proxy.h", 561 "trees/single_thread_proxy.h",
562 "trees/surface_sequence_generator.cc",
563 "trees/surface_sequence_generator.h",
564 "trees/swap_promise_manager.cc", 562 "trees/swap_promise_manager.cc",
565 "trees/swap_promise_manager.h", 563 "trees/swap_promise_manager.h",
566 "trees/swap_promise_monitor.cc", 564 "trees/swap_promise_monitor.cc",
567 "trees/swap_promise_monitor.h", 565 "trees/swap_promise_monitor.h",
568 "trees/task_runner_provider.cc", 566 "trees/task_runner_provider.cc",
569 "trees/task_runner_provider.h", 567 "trees/task_runner_provider.h",
570 "trees/threaded_channel.cc", 568 "trees/threaded_channel.cc",
571 "trees/threaded_channel.h", 569 "trees/threaded_channel.h",
572 "trees/transform_node.cc", 570 "trees/transform_node.cc",
573 "trees/transform_node.h", 571 "trees/transform_node.h",
(...skipping 397 matching lines...) Expand 10 before | Expand all | Expand 10 after
971 "trees/layer_tree_host_unittest_record_gpu_histogram.cc", 969 "trees/layer_tree_host_unittest_record_gpu_histogram.cc",
972 "trees/layer_tree_host_unittest_remote_server.cc", 970 "trees/layer_tree_host_unittest_remote_server.cc",
973 "trees/layer_tree_host_unittest_scroll.cc", 971 "trees/layer_tree_host_unittest_scroll.cc",
974 "trees/layer_tree_host_unittest_serialization.cc", 972 "trees/layer_tree_host_unittest_serialization.cc",
975 "trees/layer_tree_host_unittest_video.cc", 973 "trees/layer_tree_host_unittest_video.cc",
976 "trees/layer_tree_impl_unittest.cc", 974 "trees/layer_tree_impl_unittest.cc",
977 "trees/occlusion_tracker_unittest.cc", 975 "trees/occlusion_tracker_unittest.cc",
978 "trees/occlusion_unittest.cc", 976 "trees/occlusion_unittest.cc",
979 "trees/property_tree_unittest.cc", 977 "trees/property_tree_unittest.cc",
980 "trees/proxy_common_unittest.cc", 978 "trees/proxy_common_unittest.cc",
981 "trees/surface_sequence_generator_unittest.cc",
982 "trees/swap_promise_manager_unittest.cc", 979 "trees/swap_promise_manager_unittest.cc",
983 "trees/tree_synchronizer_unittest.cc", 980 "trees/tree_synchronizer_unittest.cc",
984 981
985 # Surfaces test files. 982 # Surfaces test files.
986 "surfaces/direct_compositor_frame_sink_unittest.cc", 983 "surfaces/direct_compositor_frame_sink_unittest.cc",
987 "surfaces/display_scheduler_unittest.cc", 984 "surfaces/display_scheduler_unittest.cc",
988 "surfaces/display_unittest.cc", 985 "surfaces/display_unittest.cc",
989 "surfaces/surface_aggregator_unittest.cc", 986 "surfaces/surface_aggregator_unittest.cc",
990 "surfaces/surface_factory_unittest.cc", 987 "surfaces/surface_factory_unittest.cc",
991 "surfaces/surface_hittest_unittest.cc", 988 "surfaces/surface_hittest_unittest.cc",
992 "surfaces/surface_manager_unittest.cc", 989 "surfaces/surface_manager_unittest.cc",
990 "surfaces/surface_sequence_generator_unittest.cc",
993 "surfaces/surface_unittest.cc", 991 "surfaces/surface_unittest.cc",
994 "surfaces/surfaces_pixeltest.cc", 992 "surfaces/surfaces_pixeltest.cc",
995 993
996 # Setup. 994 # Setup.
997 "test/cc_test_suite.cc", 995 "test/cc_test_suite.cc",
998 "test/run_all_unittests.cc", 996 "test/run_all_unittests.cc",
999 ] 997 ]
1000 998
1001 configs += [ "//build/config:precompiled_headers" ] 999 configs += [ "//build/config:precompiled_headers" ]
1002 if (!is_android) { 1000 if (!is_android) {
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after
1080 "//ui/gl:test_support", 1078 "//ui/gl:test_support",
1081 ] 1079 ]
1082 1080
1083 # This target should not require the Chrome executable to run. 1081 # This target should not require the Chrome executable to run.
1084 assert_no_deps = [ "//chrome" ] 1082 assert_no_deps = [ "//chrome" ]
1085 1083
1086 data = [ 1084 data = [
1087 "test/data/", 1085 "test/data/",
1088 ] 1086 ]
1089 } 1087 }
OLDNEW
« no previous file with comments | « no previous file | cc/blimp/layer_tree_host_remote.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698