| 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 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 64 "gpu/scanout_buffer.h", | 64 "gpu/scanout_buffer.h", |
| 65 "gpu/scoped_drm_types.cc", | 65 "gpu/scoped_drm_types.cc", |
| 66 "gpu/scoped_drm_types.h", | 66 "gpu/scoped_drm_types.h", |
| 67 "gpu/screen_manager.cc", | 67 "gpu/screen_manager.cc", |
| 68 "gpu/screen_manager.h", | 68 "gpu/screen_manager.h", |
| 69 "host/channel_observer.h", | 69 "host/channel_observer.h", |
| 70 "host/display_manager.cc", | 70 "host/display_manager.cc", |
| 71 "host/display_manager.h", | 71 "host/display_manager.h", |
| 72 "host/drm_cursor.cc", | 72 "host/drm_cursor.cc", |
| 73 "host/drm_cursor.h", | 73 "host/drm_cursor.h", |
| 74 "host/drm_device_handle.cc", |
| 75 "host/drm_device_handle.h", |
| 74 "host/drm_gpu_platform_support_host.cc", | 76 "host/drm_gpu_platform_support_host.cc", |
| 75 "host/drm_gpu_platform_support_host.h", | 77 "host/drm_gpu_platform_support_host.h", |
| 76 "host/drm_native_display_delegate.cc", | 78 "host/drm_native_display_delegate.cc", |
| 77 "host/drm_native_display_delegate.h", | 79 "host/drm_native_display_delegate.h", |
| 78 "host/drm_window_host.cc", | 80 "host/drm_window_host.cc", |
| 79 "host/drm_window_host.h", | 81 "host/drm_window_host.h", |
| 80 "host/drm_window_host_manager.cc", | 82 "host/drm_window_host_manager.cc", |
| 81 "host/drm_window_host_manager.h", | 83 "host/drm_window_host_manager.h", |
| 82 ] | 84 ] |
| 83 | 85 |
| (...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 181 "//ui/events/ozone:events_ozone_layout", | 183 "//ui/events/ozone:events_ozone_layout", |
| 182 ] | 184 ] |
| 183 | 185 |
| 184 public_configs = [ ":libgbm" ] | 186 public_configs = [ ":libgbm" ] |
| 185 | 187 |
| 186 if (use_mesa_platform_null) { | 188 if (use_mesa_platform_null) { |
| 187 defines += [ "USE_MESA_PLATFORM_NULL" ] | 189 defines += [ "USE_MESA_PLATFORM_NULL" ] |
| 188 } | 190 } |
| 189 } | 191 } |
| 190 } | 192 } |
| OLD | NEW |