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 pkg_config("libdrm") { | 8 pkg_config("libdrm") { |
9 packages = [ "libdrm" ] | 9 packages = [ "libdrm" ] |
10 } | 10 } |
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
51 "dri_wrapper.cc", | 51 "dri_wrapper.cc", |
52 "dri_wrapper.h", | 52 "dri_wrapper.h", |
53 "hardware_display_controller.cc", | 53 "hardware_display_controller.cc", |
54 "hardware_display_controller.h", | 54 "hardware_display_controller.h", |
55 "hardware_display_plane.cc", | 55 "hardware_display_plane.cc", |
56 "hardware_display_plane.h", | 56 "hardware_display_plane.h", |
57 "hardware_display_plane_manager.cc", | 57 "hardware_display_plane_manager.cc", |
58 "hardware_display_plane_manager.h", | 58 "hardware_display_plane_manager.h", |
59 "hardware_display_plane_manager_legacy.cc", | 59 "hardware_display_plane_manager_legacy.cc", |
60 "hardware_display_plane_manager_legacy.h", | 60 "hardware_display_plane_manager_legacy.h", |
| 61 "io_helper_thread.cc", |
| 62 "io_helper_thread.h", |
61 "native_display_delegate_dri.cc", | 63 "native_display_delegate_dri.cc", |
62 "native_display_delegate_dri.h", | 64 "native_display_delegate_dri.h", |
63 "native_display_delegate_proxy.cc", | 65 "native_display_delegate_proxy.cc", |
64 "native_display_delegate_proxy.h", | 66 "native_display_delegate_proxy.h", |
65 "overlay_plane.cc", | 67 "overlay_plane.cc", |
66 "overlay_plane.h", | 68 "overlay_plane.h", |
67 "scoped_drm_types.cc", | 69 "scoped_drm_types.cc", |
68 "scoped_drm_types.h", | 70 "scoped_drm_types.h", |
69 "screen_manager.cc", | 71 "screen_manager.cc", |
70 "screen_manager.h", | 72 "screen_manager.h", |
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
150 ":dri_common", | 152 ":dri_common", |
151 "//base", | 153 "//base", |
152 "//skia", | 154 "//skia", |
153 "//ui/events/ozone:events_ozone_evdev", | 155 "//ui/events/ozone:events_ozone_evdev", |
154 "//ui/events/ozone:events_ozone_layout", | 156 "//ui/events/ozone:events_ozone_layout", |
155 ] | 157 ] |
156 | 158 |
157 public_configs = [ ":libgbm" ] | 159 public_configs = [ ":libgbm" ] |
158 } | 160 } |
159 } | 161 } |
OLD | NEW |