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 13 matching lines...) Expand all Loading... |
24 "dri_console_buffer.cc", | 24 "dri_console_buffer.cc", |
25 "dri_console_buffer.h", | 25 "dri_console_buffer.h", |
26 "dri_cursor.cc", | 26 "dri_cursor.cc", |
27 "dri_cursor.h", | 27 "dri_cursor.h", |
28 "dri_buffer.cc", | 28 "dri_buffer.cc", |
29 "dri_buffer.h", | 29 "dri_buffer.h", |
30 "dri_gpu_platform_support.cc", | 30 "dri_gpu_platform_support.cc", |
31 "dri_gpu_platform_support_.h", | 31 "dri_gpu_platform_support_.h", |
32 "dri_gpu_platform_support_host.cc", | 32 "dri_gpu_platform_support_host.cc", |
33 "dri_gpu_platform_support_host.h", | 33 "dri_gpu_platform_support_host.h", |
| 34 "dri_helper_thread.cc", |
| 35 "dri_helper_thread.h", |
34 "dri_surface.cc", | 36 "dri_surface.cc", |
35 "dri_surface.h", | 37 "dri_surface.h", |
36 "dri_surface_factory.cc", | 38 "dri_surface_factory.cc", |
37 "dri_surface_factory.h", | 39 "dri_surface_factory.h", |
38 "dri_util.cc", | 40 "dri_util.cc", |
39 "dri_util.h", | 41 "dri_util.h", |
40 "dri_vsync_provider.cc", | 42 "dri_vsync_provider.cc", |
41 "dri_vsync_provider.h", | 43 "dri_vsync_provider.h", |
42 "dri_window.cc", | 44 "dri_window.cc", |
43 "dri_window.h", | 45 "dri_window.h", |
(...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
150 ":dri_common", | 152 ":dri_common", |
151 "//base", | 153 "//base", |
152 "//skia", | 154 "//skia", |
153 "//ui/events/ozone:events_ozone_evdev", | 155 "//ui/events/ozone:events_ozone_evdev", |
154 "//ui/events/ozone:events_ozone_layout", | 156 "//ui/events/ozone:events_ozone_layout", |
155 ] | 157 ] |
156 | 158 |
157 public_configs = [ ":libgbm" ] | 159 public_configs = [ ":libgbm" ] |
158 } | 160 } |
159 } | 161 } |
OLD | NEW |