| 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 use_drm_atomic = false | 10 use_drm_atomic = false |
| (...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 52 "gpu/hardware_display_controller.cc", | 52 "gpu/hardware_display_controller.cc", |
| 53 "gpu/hardware_display_controller.h", | 53 "gpu/hardware_display_controller.h", |
| 54 "gpu/hardware_display_plane.cc", | 54 "gpu/hardware_display_plane.cc", |
| 55 "gpu/hardware_display_plane.h", | 55 "gpu/hardware_display_plane.h", |
| 56 "gpu/hardware_display_plane_manager.cc", | 56 "gpu/hardware_display_plane_manager.cc", |
| 57 "gpu/hardware_display_plane_manager.h", | 57 "gpu/hardware_display_plane_manager.h", |
| 58 "gpu/hardware_display_plane_manager_legacy.cc", | 58 "gpu/hardware_display_plane_manager_legacy.cc", |
| 59 "gpu/hardware_display_plane_manager_legacy.h", | 59 "gpu/hardware_display_plane_manager_legacy.h", |
| 60 "gpu/overlay_plane.cc", | 60 "gpu/overlay_plane.cc", |
| 61 "gpu/overlay_plane.h", | 61 "gpu/overlay_plane.h", |
| 62 "gpu/page_flip_request.cc", |
| 63 "gpu/page_flip_request.h", |
| 62 "gpu/scanout_buffer.h", | 64 "gpu/scanout_buffer.h", |
| 63 "gpu/scoped_drm_types.cc", | 65 "gpu/scoped_drm_types.cc", |
| 64 "gpu/scoped_drm_types.h", | 66 "gpu/scoped_drm_types.h", |
| 65 "gpu/screen_manager.cc", | 67 "gpu/screen_manager.cc", |
| 66 "gpu/screen_manager.h", | 68 "gpu/screen_manager.h", |
| 67 "host/channel_observer.h", | 69 "host/channel_observer.h", |
| 68 "host/display_manager.cc", | 70 "host/display_manager.cc", |
| 69 "host/display_manager.h", | 71 "host/display_manager.h", |
| 70 "host/drm_cursor.cc", | 72 "host/drm_cursor.cc", |
| 71 "host/drm_cursor.h", | 73 "host/drm_cursor.h", |
| (...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 179 "//ui/events/ozone:events_ozone_layout", | 181 "//ui/events/ozone:events_ozone_layout", |
| 180 ] | 182 ] |
| 181 | 183 |
| 182 public_configs = [ ":libgbm" ] | 184 public_configs = [ ":libgbm" ] |
| 183 | 185 |
| 184 if (use_mesa_platform_null) { | 186 if (use_mesa_platform_null) { |
| 185 defines += [ "USE_MESA_PLATFORM_NULL" ] | 187 defines += [ "USE_MESA_PLATFORM_NULL" ] |
| 186 } | 188 } |
| 187 } | 189 } |
| 188 } | 190 } |
| OLD | NEW |