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 20 matching lines...) Expand all Loading... |
31 "dri_surface_factory.h", | 31 "dri_surface_factory.h", |
32 "dri_util.cc", | 32 "dri_util.cc", |
33 "dri_util.h", | 33 "dri_util.h", |
34 "dri_vsync_provider.cc", | 34 "dri_vsync_provider.cc", |
35 "dri_vsync_provider.h", | 35 "dri_vsync_provider.h", |
36 "dri_window.cc", | 36 "dri_window.cc", |
37 "dri_window.h", | 37 "dri_window.h", |
38 "dri_window_delegate.h", | 38 "dri_window_delegate.h", |
39 "dri_window_delegate_impl.cc", | 39 "dri_window_delegate_impl.cc", |
40 "dri_window_delegate_impl.h", | 40 "dri_window_delegate_impl.h", |
| 41 "dri_window_delegate_manager.cc", |
| 42 "dri_window_delegate_manager.h", |
41 "dri_window_manager.cc", | 43 "dri_window_manager.cc", |
42 "dri_window_manager.h", | 44 "dri_window_manager.h", |
43 "dri_wrapper.cc", | 45 "dri_wrapper.cc", |
44 "dri_wrapper.h", | 46 "dri_wrapper.h", |
45 "hardware_display_controller.cc", | 47 "hardware_display_controller.cc", |
46 "hardware_display_controller.h", | 48 "hardware_display_controller.h", |
47 "scoped_drm_types.cc", | 49 "scoped_drm_types.cc", |
48 "scoped_drm_types.h", | 50 "scoped_drm_types.h", |
49 "screen_manager.cc", | 51 "screen_manager.cc", |
50 "screen_manager.h", | 52 "screen_manager.h", |
(...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
140 "//base", | 142 "//base", |
141 "//skia", | 143 "//skia", |
142 "//ui/events/ozone:events_ozone_evdev", | 144 "//ui/events/ozone:events_ozone_evdev", |
143 ] | 145 ] |
144 | 146 |
145 direct_dependent_configs = [ | 147 direct_dependent_configs = [ |
146 ":libgbm", | 148 ":libgbm", |
147 ] | 149 ] |
148 } | 150 } |
149 } | 151 } |
OLD | NEW |