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

Side by Side Diff: ui/ozone/platform/drm/BUILD.gn

Issue 1603213002: Renamed ChannelObserver to better describe its purpose (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: review nit Created 4 years, 10 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 | ui/ozone/platform/drm/gbm.gypi » ('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/linux/pkg_config.gni") 5 import("//build/config/linux/pkg_config.gni")
6 import("//ui/ozone/ozone.gni") 6 import("//ui/ozone/ozone.gni")
7 7
8 declare_args() { 8 declare_args() {
9 use_mesa_platform_null = false 9 use_mesa_platform_null = false
10 use_drm_atomic = false 10 use_drm_atomic = false
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after
80 "gpu/hardware_display_plane_manager_legacy.h", 80 "gpu/hardware_display_plane_manager_legacy.h",
81 "gpu/overlay_plane.cc", 81 "gpu/overlay_plane.cc",
82 "gpu/overlay_plane.h", 82 "gpu/overlay_plane.h",
83 "gpu/page_flip_request.cc", 83 "gpu/page_flip_request.cc",
84 "gpu/page_flip_request.h", 84 "gpu/page_flip_request.h",
85 "gpu/proxy_helpers.cc", 85 "gpu/proxy_helpers.cc",
86 "gpu/proxy_helpers.h", 86 "gpu/proxy_helpers.h",
87 "gpu/scanout_buffer.h", 87 "gpu/scanout_buffer.h",
88 "gpu/screen_manager.cc", 88 "gpu/screen_manager.cc",
89 "gpu/screen_manager.h", 89 "gpu/screen_manager.h",
90 "host/channel_observer.h",
91 "host/drm_cursor.cc", 90 "host/drm_cursor.cc",
92 "host/drm_cursor.h", 91 "host/drm_cursor.h",
93 "host/drm_cursor_core.cc", 92 "host/drm_cursor_core.cc",
94 "host/drm_cursor_core.h", 93 "host/drm_cursor_core.h",
95 "host/drm_device_handle.cc", 94 "host/drm_device_handle.cc",
96 "host/drm_device_handle.h", 95 "host/drm_device_handle.h",
97 "host/drm_display_host.cc", 96 "host/drm_display_host.cc",
98 "host/drm_display_host.h", 97 "host/drm_display_host.h",
99 "host/drm_display_host_manager.cc", 98 "host/drm_display_host_manager.cc",
100 "host/drm_display_host_manager.h", 99 "host/drm_display_host_manager.h",
101 "host/drm_display_host_manager_core.cc", 100 "host/drm_display_host_manager_core.cc",
102 "host/drm_display_host_manager_core.h", 101 "host/drm_display_host_manager_core.h",
103 "host/drm_gpu_platform_support_host.cc", 102 "host/drm_gpu_platform_support_host.cc",
104 "host/drm_gpu_platform_support_host.h", 103 "host/drm_gpu_platform_support_host.h",
105 "host/drm_native_display_delegate.cc", 104 "host/drm_native_display_delegate.cc",
106 "host/drm_native_display_delegate.h", 105 "host/drm_native_display_delegate.h",
107 "host/drm_overlay_candidates_host.cc", 106 "host/drm_overlay_candidates_host.cc",
108 "host/drm_overlay_candidates_host.h", 107 "host/drm_overlay_candidates_host.h",
109 "host/drm_overlay_manager.cc", 108 "host/drm_overlay_manager.cc",
110 "host/drm_overlay_manager.h", 109 "host/drm_overlay_manager.h",
111 "host/drm_overlay_manager_core.cc", 110 "host/drm_overlay_manager_core.cc",
112 "host/drm_overlay_manager_core.h", 111 "host/drm_overlay_manager_core.h",
113 "host/drm_window_host.cc", 112 "host/drm_window_host.cc",
114 "host/drm_window_host.h", 113 "host/drm_window_host.h",
115 "host/drm_window_host_manager.cc", 114 "host/drm_window_host_manager.cc",
116 "host/drm_window_host_manager.h", 115 "host/drm_window_host_manager.h",
116 "host/gpu_thread_observer.h",
117 "ozone_platform_gbm.cc", 117 "ozone_platform_gbm.cc",
118 "ozone_platform_gbm.h", 118 "ozone_platform_gbm.h",
119 ] 119 ]
120 120
121 deps = [ 121 deps = [
122 "//base", 122 "//base",
123 "//ipc", 123 "//ipc",
124 "//skia", 124 "//skia",
125 "//third_party/minigbm", 125 "//third_party/minigbm",
126 "//ui/base", 126 "//ui/base",
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
189 deps = [ 189 deps = [
190 ":gbm", 190 ":gbm",
191 "//skia", 191 "//skia",
192 "//testing/gtest", 192 "//testing/gtest",
193 "//ui/gfx", 193 "//ui/gfx",
194 "//ui/ozone", 194 "//ui/ozone",
195 ] 195 ]
196 196
197 public_configs = [ ":libdrm" ] 197 public_configs = [ ":libdrm" ]
198 } 198 }
OLDNEW
« no previous file with comments | « no previous file | ui/ozone/platform/drm/gbm.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698