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

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

Issue 1157793004: ozone: Add overlay candidate implementation that queries support via IPC (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 7 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/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 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
64 "gpu/screen_manager.h", 64 "gpu/screen_manager.h",
65 "host/channel_observer.h", 65 "host/channel_observer.h",
66 "host/drm_cursor.cc", 66 "host/drm_cursor.cc",
67 "host/drm_cursor.h", 67 "host/drm_cursor.h",
68 "host/drm_device_handle.cc", 68 "host/drm_device_handle.cc",
69 "host/drm_device_handle.h", 69 "host/drm_device_handle.h",
70 "host/drm_display_host_manager.cc", 70 "host/drm_display_host_manager.cc",
71 "host/drm_display_host_manager.h", 71 "host/drm_display_host_manager.h",
72 "host/drm_gpu_platform_support_host.cc", 72 "host/drm_gpu_platform_support_host.cc",
73 "host/drm_gpu_platform_support_host.h", 73 "host/drm_gpu_platform_support_host.h",
74 "host/drm_host_overlay_candidates.cc",
75 "host/drm_host_overlay_candidates.h",
74 "host/drm_native_display_delegate.cc", 76 "host/drm_native_display_delegate.cc",
75 "host/drm_native_display_delegate.h", 77 "host/drm_native_display_delegate.h",
76 "host/drm_overlay_manager.cc", 78 "host/drm_overlay_manager.cc",
77 "host/drm_overlay_manager.h", 79 "host/drm_overlay_manager.h",
78 "host/drm_window_host.cc", 80 "host/drm_window_host.cc",
79 "host/drm_window_host.h", 81 "host/drm_window_host.h",
80 "host/drm_window_host_manager.cc", 82 "host/drm_window_host_manager.cc",
81 "host/drm_window_host_manager.h", 83 "host/drm_window_host_manager.h",
82 ] 84 ]
83 85
(...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after
184 public_configs = [ 186 public_configs = [
185 ":libgbm", 187 ":libgbm",
186 "//third_party/khronos:khronos_headers", 188 "//third_party/khronos:khronos_headers",
187 ] 189 ]
188 190
189 if (use_mesa_platform_null) { 191 if (use_mesa_platform_null) {
190 defines += [ "USE_MESA_PLATFORM_NULL" ] 192 defines += [ "USE_MESA_PLATFORM_NULL" ]
191 } 193 }
192 } 194 }
193 } 195 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698