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 declare_args() { | 8 declare_args() { |
9 use_mesa_platform_null = false | 9 use_mesa_platform_null = false |
10 } | 10 } |
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
47 "dri_window.h", | 47 "dri_window.h", |
48 "dri_window_delegate.h", | 48 "dri_window_delegate.h", |
49 "dri_window_delegate_impl.cc", | 49 "dri_window_delegate_impl.cc", |
50 "dri_window_delegate_impl.h", | 50 "dri_window_delegate_impl.h", |
51 "dri_window_delegate_manager.cc", | 51 "dri_window_delegate_manager.cc", |
52 "dri_window_delegate_manager.h", | 52 "dri_window_delegate_manager.h", |
53 "dri_window_manager.cc", | 53 "dri_window_manager.cc", |
54 "dri_window_manager.h", | 54 "dri_window_manager.h", |
55 "dri_wrapper.cc", | 55 "dri_wrapper.cc", |
56 "dri_wrapper.h", | 56 "dri_wrapper.h", |
| 57 "drm_device_generator.cc", |
| 58 "drm_device_generator.h", |
57 "drm_device_manager.cc", | 59 "drm_device_manager.cc", |
58 "drm_device_manager.h", | 60 "drm_device_manager.h", |
59 "hardware_display_controller.cc", | 61 "hardware_display_controller.cc", |
60 "hardware_display_controller.h", | 62 "hardware_display_controller.h", |
61 "hardware_display_plane.cc", | 63 "hardware_display_plane.cc", |
62 "hardware_display_plane.h", | 64 "hardware_display_plane.h", |
63 "hardware_display_plane_manager.cc", | 65 "hardware_display_plane_manager.cc", |
64 "hardware_display_plane_manager.h", | 66 "hardware_display_plane_manager.h", |
65 "hardware_display_plane_manager_legacy.cc", | 67 "hardware_display_plane_manager_legacy.cc", |
66 "hardware_display_plane_manager_legacy.h", | 68 "hardware_display_plane_manager_legacy.h", |
(...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
167 "//ui/events/ozone:events_ozone_layout", | 169 "//ui/events/ozone:events_ozone_layout", |
168 ] | 170 ] |
169 | 171 |
170 public_configs = [ ":libgbm" ] | 172 public_configs = [ ":libgbm" ] |
171 | 173 |
172 if (use_mesa_platform_null) { | 174 if (use_mesa_platform_null) { |
173 defines += [ "USE_MESA_PLATFORM_NULL" ] | 175 defines += [ "USE_MESA_PLATFORM_NULL" ] |
174 } | 176 } |
175 } | 177 } |
176 } | 178 } |
OLD | NEW |