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

Side by Side Diff: services/ui/public/cpp/BUILD.gn

Issue 2337913003: Fork cc::OutputSurface into cc::CompositorFrameSink. (Closed)
Patch Set: cfsfork: android-vulkan Created 4 years, 3 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 | « content/test/test_render_view_host.cc ('k') | services/ui/public/cpp/compositor_frame_sink.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 6
7 # This is the public target. It contains only the public headers. The 7 # This is the public target. It contains only the public headers. The
8 # implementation (and private haders) are in 'internal'. 8 # implementation (and private haders) are in 'internal'.
9 source_set("cpp") { 9 source_set("cpp") {
10 sources = [ 10 sources = [
11 "compositor_frame_sink.h",
11 "gpu_service.h", 12 "gpu_service.h",
12 "input_event_handler.h", 13 "input_event_handler.h",
13 "mojo_gpu_memory_buffer_manager.h", 14 "mojo_gpu_memory_buffer_manager.h",
14 "output_surface.h",
15 "property_type_converters.h", 15 "property_type_converters.h",
16 "raster_thread_helper.h", 16 "raster_thread_helper.h",
17 "scoped_window_ptr.h", 17 "scoped_window_ptr.h",
18 "window.h", 18 "window.h",
19 "window_manager_delegate.h", 19 "window_manager_delegate.h",
20 "window_observer.h", 20 "window_observer.h",
21 "window_property.h", 21 "window_property.h",
22 "window_surface.h", 22 "window_surface.h",
23 "window_surface_client.h", 23 "window_surface_client.h",
24 "window_tracker.h", 24 "window_tracker.h",
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
87 87
88 source_set("internal") { 88 source_set("internal") {
89 # This target is an implementation detail and is intended only to be used by 89 # This target is an implementation detail and is intended only to be used by
90 # the 'cpp' target. 90 # the 'cpp' target.
91 visibility = [ 91 visibility = [
92 ":cpp", 92 ":cpp",
93 "//services/ui/demo:mus_demo_library", 93 "//services/ui/demo:mus_demo_library",
94 ] 94 ]
95 95
96 sources = [ 96 sources = [
97 "compositor_frame_sink.cc",
97 "context_provider.cc", 98 "context_provider.cc",
98 "context_provider.h", 99 "context_provider.h",
99 "gles2_context.cc", 100 "gles2_context.cc",
100 "gles2_context.h", 101 "gles2_context.h",
101 "gpu_memory_buffer_impl.cc", 102 "gpu_memory_buffer_impl.cc",
102 "gpu_memory_buffer_impl.h", 103 "gpu_memory_buffer_impl.h",
103 "gpu_service.cc", 104 "gpu_service.cc",
104 "in_flight_change.cc", 105 "in_flight_change.cc",
105 "in_flight_change.h", 106 "in_flight_change.h",
106 "mojo_buffer_backing.cc", 107 "mojo_buffer_backing.cc",
107 "mojo_buffer_backing.h", 108 "mojo_buffer_backing.h",
108 "mojo_gpu_memory_buffer.cc", 109 "mojo_gpu_memory_buffer.cc",
109 "mojo_gpu_memory_buffer.h", 110 "mojo_gpu_memory_buffer.h",
110 "mojo_gpu_memory_buffer_manager.cc", 111 "mojo_gpu_memory_buffer_manager.cc",
111 "output_surface.cc",
112 "property_type_converters.cc", 112 "property_type_converters.cc",
113 "raster_thread_helper.cc", 113 "raster_thread_helper.cc",
114 "scoped_window_ptr.cc", 114 "scoped_window_ptr.cc",
115 "window.cc", 115 "window.cc",
116 "window_manager_delegate.cc", 116 "window_manager_delegate.cc",
117 "window_observer.cc", 117 "window_observer.cc",
118 "window_private.cc", 118 "window_private.cc",
119 "window_surface.cc", 119 "window_surface.cc",
120 "window_tree_client.cc", 120 "window_tree_client.cc",
121 "window_tree_client_delegate.cc", 121 "window_tree_client_delegate.cc",
(...skipping 27 matching lines...) Expand all
149 data_deps = [ 149 data_deps = [
150 "//services/ui", 150 "//services/ui",
151 ] 151 ]
152 152
153 defines = [ "GL_GLEXT_PROTOTYPES" ] 153 defines = [ "GL_GLEXT_PROTOTYPES" ]
154 154
155 if (use_ozone) { 155 if (use_ozone) {
156 deps += [ "//ui/ozone" ] 156 deps += [ "//ui/ozone" ]
157 } 157 }
158 } 158 }
OLDNEW
« no previous file with comments | « content/test/test_render_view_host.cc ('k') | services/ui/public/cpp/compositor_frame_sink.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698