OLD | NEW |
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 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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.cc", | 70 "host/drm_display_host.cc", |
71 "host/drm_display_host.h", | 71 "host/drm_display_host.h", |
72 "host/drm_display_host_manager.cc", | 72 "host/drm_display_host_manager.cc", |
73 "host/drm_display_host_manager.h", | 73 "host/drm_display_host_manager.h", |
74 "host/drm_gpu_platform_support_host.cc", | 74 "host/drm_gpu_platform_support_host.cc", |
75 "host/drm_gpu_platform_support_host.h", | 75 "host/drm_gpu_platform_support_host.h", |
76 "host/drm_native_display_delegate.cc", | 76 "host/drm_native_display_delegate.cc", |
77 "host/drm_native_display_delegate.h", | 77 "host/drm_native_display_delegate.h", |
| 78 "host/drm_overlay_candidates_host.cc", |
| 79 "host/drm_overlay_candidates_host.h", |
78 "host/drm_overlay_manager.cc", | 80 "host/drm_overlay_manager.cc", |
79 "host/drm_overlay_manager.h", | 81 "host/drm_overlay_manager.h", |
80 "host/drm_window_host.cc", | 82 "host/drm_window_host.cc", |
81 "host/drm_window_host.h", | 83 "host/drm_window_host.h", |
82 "host/drm_window_host_manager.cc", | 84 "host/drm_window_host_manager.cc", |
83 "host/drm_window_host_manager.h", | 85 "host/drm_window_host_manager.h", |
84 ] | 86 ] |
85 | 87 |
86 defines = [ "OZONE_IMPLEMENTATION" ] | 88 defines = [ "OZONE_IMPLEMENTATION" ] |
87 | 89 |
(...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
186 public_configs = [ | 188 public_configs = [ |
187 ":libgbm", | 189 ":libgbm", |
188 "//third_party/khronos:khronos_headers", | 190 "//third_party/khronos:khronos_headers", |
189 ] | 191 ] |
190 | 192 |
191 if (use_mesa_platform_null) { | 193 if (use_mesa_platform_null) { |
192 defines += [ "USE_MESA_PLATFORM_NULL" ] | 194 defines += [ "USE_MESA_PLATFORM_NULL" ] |
193 } | 195 } |
194 } | 196 } |
195 } | 197 } |
OLD | NEW |