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

Side by Side Diff: cc/surfaces/BUILD.gn

Issue 2824053003: Split SurfaceFactoryClient Into Four Interfaces (Closed)
Patch Set: Address Nits Created 3 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 | « cc/BUILD.gn ('k') | cc/surfaces/compositor_frame_sink_support.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("//cc/cc.gni") 5 import("//cc/cc.gni")
6 6
7 cc_source_set("surface_id") { 7 cc_source_set("surface_id") {
8 sources = [ 8 sources = [
9 "frame_sink_id.cc", 9 "frame_sink_id.cc",
10 "frame_sink_id.h", 10 "frame_sink_id.h",
(...skipping 29 matching lines...) Expand all
40 "direct_compositor_frame_sink.h", 40 "direct_compositor_frame_sink.h",
41 "direct_surface_reference_factory.cc", 41 "direct_surface_reference_factory.cc",
42 "direct_surface_reference_factory.h", 42 "direct_surface_reference_factory.h",
43 "display.cc", 43 "display.cc",
44 "display.h", 44 "display.h",
45 "display_client.h", 45 "display_client.h",
46 "display_scheduler.cc", 46 "display_scheduler.cc",
47 "display_scheduler.h", 47 "display_scheduler.h",
48 "framesink_manager.cc", 48 "framesink_manager.cc",
49 "framesink_manager.h", 49 "framesink_manager.h",
50 "framesink_manager_client.h",
50 "local_surface_id_allocator.cc", 51 "local_surface_id_allocator.cc",
51 "local_surface_id_allocator.h", 52 "local_surface_id_allocator.h",
52 "pending_frame_observer.h", 53 "pending_frame_observer.h",
53 "referenced_surface_tracker.cc", 54 "referenced_surface_tracker.cc",
54 "referenced_surface_tracker.h", 55 "referenced_surface_tracker.h",
55 "sequence_surface_reference_factory.cc", 56 "sequence_surface_reference_factory.cc",
56 "sequence_surface_reference_factory.h", 57 "sequence_surface_reference_factory.h",
57 "surface.cc", 58 "surface.cc",
58 "surface.h", 59 "surface.h",
59 "surface_aggregator.cc", 60 "surface_aggregator.cc",
60 "surface_aggregator.h", 61 "surface_aggregator.h",
61 "surface_dependency_tracker.cc", 62 "surface_dependency_tracker.cc",
62 "surface_dependency_tracker.h", 63 "surface_dependency_tracker.h",
63 "surface_factory.cc", 64 "surface_factory.cc",
64 "surface_factory.h", 65 "surface_factory.h",
65 "surface_factory_client.h", 66 "surface_factory_client.h",
66 "surface_hittest.cc", 67 "surface_hittest.cc",
67 "surface_hittest.h", 68 "surface_hittest.h",
68 "surface_hittest_delegate.h", 69 "surface_hittest_delegate.h",
69 "surface_manager.cc", 70 "surface_manager.cc",
70 "surface_manager.h", 71 "surface_manager.h",
71 "surface_resource_holder.cc", 72 "surface_resource_holder.cc",
72 "surface_resource_holder.h", 73 "surface_resource_holder.h",
74 "surface_resource_holder_client.h",
73 "surfaces_export.h", 75 "surfaces_export.h",
74 ] 76 ]
75 77
76 defines = [ "CC_SURFACES_IMPLEMENTATION=1" ] 78 defines = [ "CC_SURFACES_IMPLEMENTATION=1" ]
77 79
78 public_deps = [ 80 public_deps = [
79 ":surface_id", 81 ":surface_id",
80 ] 82 ]
81 83
82 deps = [ 84 deps = [
83 "//base", 85 "//base",
84 "//base/third_party/dynamic_annotations", 86 "//base/third_party/dynamic_annotations",
85 "//cc", 87 "//cc",
86 "//gpu/command_buffer/client:gles2_interface", 88 "//gpu/command_buffer/client:gles2_interface",
87 "//gpu/command_buffer/common", 89 "//gpu/command_buffer/common",
88 "//gpu/vulkan:features", 90 "//gpu/vulkan:features",
89 "//skia", 91 "//skia",
90 "//ui/gfx", 92 "//ui/gfx",
91 "//ui/gfx/geometry", 93 "//ui/gfx/geometry",
92 "//ui/latency", 94 "//ui/latency",
93 ] 95 ]
94 } 96 }
OLDNEW
« no previous file with comments | « cc/BUILD.gn ('k') | cc/surfaces/compositor_frame_sink_support.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698