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 } |
11 | 11 |
12 source_set("dri_common") { | 12 source_set("dri_common") { |
13 sources = [ | 13 sources = [ |
14 "chromeos/display_mode_dri.cc", | 14 "chromeos/display_mode_dri.cc", |
15 "chromeos/display_mode_dri.h", | 15 "chromeos/display_mode_dri.h", |
16 "chromeos/display_snapshot_dri.cc", | 16 "chromeos/display_snapshot_dri.cc", |
17 "chromeos/display_snapshot_dri.h", | 17 "chromeos/display_snapshot_dri.h", |
18 "chromeos/native_display_delegate_dri.cc", | 18 "chromeos/native_display_delegate_dri.cc", |
19 "chromeos/native_display_delegate_dri.h", | 19 "chromeos/native_display_delegate_dri.h", |
20 "crtc_state.cc", | 20 "crtc_state.cc", |
21 "crtc_state.h", | 21 "crtc_state.h", |
22 "cursor_factory_evdev_dri.cc", | |
23 "cursor_factory_evdev_dri.h", | |
24 "dri_console_buffer.cc", | 22 "dri_console_buffer.cc", |
25 "dri_console_buffer.h", | 23 "dri_console_buffer.h", |
| 24 "dri_cursor.cc", |
| 25 "dri_cursor.h", |
26 "dri_buffer.cc", | 26 "dri_buffer.cc", |
27 "dri_buffer.h", | 27 "dri_buffer.h", |
28 "dri_surface.cc", | 28 "dri_surface.cc", |
29 "dri_surface.h", | 29 "dri_surface.h", |
30 "dri_surface_factory.cc", | 30 "dri_surface_factory.cc", |
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", |
(...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
139 "//base", | 139 "//base", |
140 "//skia", | 140 "//skia", |
141 "//ui/events/ozone:events_ozone_evdev", | 141 "//ui/events/ozone:events_ozone_evdev", |
142 ] | 142 ] |
143 | 143 |
144 direct_dependent_configs = [ | 144 direct_dependent_configs = [ |
145 ":libgbm", | 145 ":libgbm", |
146 ] | 146 ] |
147 } | 147 } |
148 } | 148 } |
OLD | NEW |