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 "touch_converter.cc", |
| 62 "touch_converter.h", |
61 "virtual_terminal_manager.cc", | 63 "virtual_terminal_manager.cc", |
62 "virtual_terminal_manager.h", | 64 "virtual_terminal_manager.h", |
63 ] | 65 ] |
64 | 66 |
65 deps = [ | 67 deps = [ |
66 "//base", | 68 "//base", |
67 "//skia", | 69 "//skia", |
68 "//ipc", | 70 "//ipc", |
69 "//ui/base", | 71 "//ui/base", |
70 "//ui/display/types", | 72 "//ui/display/types", |
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
141 "//base", | 143 "//base", |
142 "//skia", | 144 "//skia", |
143 "//ui/events/ozone:events_ozone_evdev", | 145 "//ui/events/ozone:events_ozone_evdev", |
144 ] | 146 ] |
145 | 147 |
146 public_configs = [ | 148 public_configs = [ |
147 ":libgbm", | 149 ":libgbm", |
148 ] | 150 ] |
149 } | 151 } |
150 } | 152 } |
OLD | NEW |