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 "channel_observer.h", | 14 "channel_observer.h", |
15 "crtc_controller.cc", | 15 "crtc_controller.cc", |
16 "crtc_controller.h", | 16 "crtc_controller.h", |
| 17 "display_change_observer.h", |
17 "display_manager.cc", | 18 "display_manager.cc", |
18 "display_manager.h", | 19 "display_manager.h", |
19 "display_mode_dri.cc", | 20 "display_mode_dri.cc", |
20 "display_mode_dri.h", | 21 "display_mode_dri.h", |
21 "display_snapshot_dri.cc", | 22 "display_snapshot_dri.cc", |
22 "display_snapshot_dri.h", | 23 "display_snapshot_dri.h", |
23 "dri_console_buffer.cc", | 24 "dri_console_buffer.cc", |
24 "dri_console_buffer.h", | 25 "dri_console_buffer.h", |
25 "dri_cursor.cc", | 26 "dri_cursor.cc", |
26 "dri_cursor.h", | 27 "dri_cursor.h", |
(...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
147 ":dri_common", | 148 ":dri_common", |
148 "//base", | 149 "//base", |
149 "//skia", | 150 "//skia", |
150 "//ui/events/ozone:events_ozone_evdev", | 151 "//ui/events/ozone:events_ozone_evdev", |
151 "//ui/events/ozone:events_ozone_layout", | 152 "//ui/events/ozone:events_ozone_layout", |
152 ] | 153 ] |
153 | 154 |
154 public_configs = [ ":libgbm" ] | 155 public_configs = [ ":libgbm" ] |
155 } | 156 } |
156 } | 157 } |
OLD | NEW |