| 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 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 99 "host/drm_display_host_manager.cc", | 99 "host/drm_display_host_manager.cc", |
| 100 "host/drm_display_host_manager.h", | 100 "host/drm_display_host_manager.h", |
| 101 "host/drm_display_host_manager_core.cc", | 101 "host/drm_display_host_manager_core.cc", |
| 102 "host/drm_display_host_manager_core.h", | 102 "host/drm_display_host_manager_core.h", |
| 103 "host/drm_gpu_platform_support_host.cc", | 103 "host/drm_gpu_platform_support_host.cc", |
| 104 "host/drm_gpu_platform_support_host.h", | 104 "host/drm_gpu_platform_support_host.h", |
| 105 "host/drm_native_display_delegate.cc", | 105 "host/drm_native_display_delegate.cc", |
| 106 "host/drm_native_display_delegate.h", | 106 "host/drm_native_display_delegate.h", |
| 107 "host/drm_overlay_candidates_host.cc", | 107 "host/drm_overlay_candidates_host.cc", |
| 108 "host/drm_overlay_candidates_host.h", | 108 "host/drm_overlay_candidates_host.h", |
| 109 "host/drm_overlay_candidates_host_core.cc", | |
| 110 "host/drm_overlay_candidates_host_core.h", | |
| 111 "host/drm_overlay_manager.cc", | 109 "host/drm_overlay_manager.cc", |
| 112 "host/drm_overlay_manager.h", | 110 "host/drm_overlay_manager.h", |
| 111 "host/drm_overlay_manager_core.cc", |
| 112 "host/drm_overlay_manager_core.h", |
| 113 "host/drm_window_host.cc", | 113 "host/drm_window_host.cc", |
| 114 "host/drm_window_host.h", | 114 "host/drm_window_host.h", |
| 115 "host/drm_window_host_manager.cc", | 115 "host/drm_window_host_manager.cc", |
| 116 "host/drm_window_host_manager.h", | 116 "host/drm_window_host_manager.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", |
| (...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 } |
| OLD | NEW |