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 "hardware_display_controller.h", | 51 "hardware_display_controller.h", |
52 "native_display_delegate_dri.cc", | 52 "native_display_delegate_dri.cc", |
53 "native_display_delegate_dri.h", | 53 "native_display_delegate_dri.h", |
54 "overlay_plane.cc", | 54 "overlay_plane.cc", |
55 "overlay_plane.h", | 55 "overlay_plane.h", |
56 "scoped_drm_types.cc", | 56 "scoped_drm_types.cc", |
57 "scoped_drm_types.h", | 57 "scoped_drm_types.h", |
58 "screen_manager.cc", | 58 "screen_manager.cc", |
59 "screen_manager.h", | 59 "screen_manager.h", |
60 "scanout_buffer.h", | 60 "scanout_buffer.h", |
61 "virtual_terminal_manager.cc", | |
62 "virtual_terminal_manager.h", | |
63 ] | 61 ] |
64 | 62 |
65 deps = [ | 63 deps = [ |
66 "//base", | 64 "//base", |
67 "//skia", | 65 "//skia", |
68 "//ipc", | 66 "//ipc", |
69 "//ui/base", | 67 "//ui/base", |
70 "//ui/display/types", | 68 "//ui/display/types", |
71 "//ui/events", | 69 "//ui/events", |
72 "//ui/events/ozone:events_ozone_evdev", | 70 "//ui/events/ozone:events_ozone_evdev", |
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
141 "//base", | 139 "//base", |
142 "//skia", | 140 "//skia", |
143 "//ui/events/ozone:events_ozone_evdev", | 141 "//ui/events/ozone:events_ozone_evdev", |
144 ] | 142 ] |
145 | 143 |
146 public_configs = [ | 144 public_configs = [ |
147 ":libgbm", | 145 ":libgbm", |
148 ] | 146 ] |
149 } | 147 } |
150 } | 148 } |
OLD | NEW |