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_drm_atomic = false | 9 use_drm_atomic = false |
10 } | 10 } |
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
64 "gpu/drm_window_proxy.cc", | 64 "gpu/drm_window_proxy.cc", |
65 "gpu/drm_window_proxy.h", | 65 "gpu/drm_window_proxy.h", |
66 "gpu/gbm_buffer.cc", | 66 "gpu/gbm_buffer.cc", |
67 "gpu/gbm_buffer.h", | 67 "gpu/gbm_buffer.h", |
68 "gpu/gbm_buffer_base.cc", | 68 "gpu/gbm_buffer_base.cc", |
69 "gpu/gbm_buffer_base.h", | 69 "gpu/gbm_buffer_base.h", |
70 "gpu/gbm_device.cc", | 70 "gpu/gbm_device.cc", |
71 "gpu/gbm_device.h", | 71 "gpu/gbm_device.h", |
72 "gpu/gbm_surface_factory.cc", | 72 "gpu/gbm_surface_factory.cc", |
73 "gpu/gbm_surface_factory.h", | 73 "gpu/gbm_surface_factory.h", |
74 "gpu/gbm_surfaceless.cc", | 74 "gpu/gl_surface_gbm_buffered_surfaceless.cc", |
75 "gpu/gbm_surfaceless.h", | 75 "gpu/gl_surface_gbm_buffered_surfaceless.h", |
| 76 "gpu/gl_surface_gbm_surfaceless.cc", |
| 77 "gpu/gl_surface_gbm_surfaceless.h", |
76 "gpu/hardware_display_controller.cc", | 78 "gpu/hardware_display_controller.cc", |
77 "gpu/hardware_display_controller.h", | 79 "gpu/hardware_display_controller.h", |
78 "gpu/hardware_display_plane.cc", | 80 "gpu/hardware_display_plane.cc", |
79 "gpu/hardware_display_plane.h", | 81 "gpu/hardware_display_plane.h", |
80 "gpu/hardware_display_plane_manager.cc", | 82 "gpu/hardware_display_plane_manager.cc", |
81 "gpu/hardware_display_plane_manager.h", | 83 "gpu/hardware_display_plane_manager.h", |
82 "gpu/hardware_display_plane_manager_legacy.cc", | 84 "gpu/hardware_display_plane_manager_legacy.cc", |
83 "gpu/hardware_display_plane_manager_legacy.h", | 85 "gpu/hardware_display_plane_manager_legacy.h", |
84 "gpu/inter_thread_messaging_proxy.cc", | 86 "gpu/inter_thread_messaging_proxy.cc", |
85 "gpu/inter_thread_messaging_proxy.h", | 87 "gpu/inter_thread_messaging_proxy.h", |
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
130 "//ui/display/types", | 132 "//ui/display/types", |
131 "//ui/display/util", | 133 "//ui/display/util", |
132 "//ui/events", | 134 "//ui/events", |
133 "//ui/events/devices", | 135 "//ui/events/devices", |
134 "//ui/events/ozone:events_ozone", | 136 "//ui/events/ozone:events_ozone", |
135 "//ui/events/ozone:events_ozone_evdev", | 137 "//ui/events/ozone:events_ozone_evdev", |
136 "//ui/events/ozone:events_ozone_layout", | 138 "//ui/events/ozone:events_ozone_layout", |
137 "//ui/events/platform", | 139 "//ui/events/platform", |
138 "//ui/gfx", | 140 "//ui/gfx", |
139 "//ui/gfx/geometry", | 141 "//ui/gfx/geometry", |
| 142 "//ui/gl", |
140 "//ui/ozone:ozone_base", | 143 "//ui/ozone:ozone_base", |
141 "//ui/ozone/common", | 144 "//ui/ozone/common", |
142 "//ui/platform_window", | 145 "//ui/platform_window", |
143 ] | 146 ] |
144 | 147 |
145 configs += [ ":libdrm" ] | 148 configs += [ ":libdrm" ] |
146 | 149 |
147 public_configs = [ "//third_party/khronos:khronos_headers" ] | 150 public_configs = [ "//third_party/khronos:khronos_headers" ] |
148 | 151 |
149 defines = [ "OZONE_IMPLEMENTATION" ] | 152 defines = [ "OZONE_IMPLEMENTATION" ] |
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
186 ":gbm", | 189 ":gbm", |
187 "//skia", | 190 "//skia", |
188 "//testing/gtest", | 191 "//testing/gtest", |
189 "//ui/gfx", | 192 "//ui/gfx", |
190 "//ui/ozone:platform", | 193 "//ui/ozone:platform", |
191 "//ui/ozone/common", | 194 "//ui/ozone/common", |
192 ] | 195 ] |
193 | 196 |
194 public_configs = [ ":libdrm" ] | 197 public_configs = [ ":libdrm" ] |
195 } | 198 } |
OLD | NEW |