| 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 23 matching lines...) Expand all Loading... |
| 34 "gpu/drm_device_generator.cc", | 34 "gpu/drm_device_generator.cc", |
| 35 "gpu/drm_device_generator.h", | 35 "gpu/drm_device_generator.h", |
| 36 "gpu/drm_device_manager.cc", | 36 "gpu/drm_device_manager.cc", |
| 37 "gpu/drm_device_manager.h", | 37 "gpu/drm_device_manager.h", |
| 38 "gpu/drm_display.cc", | 38 "gpu/drm_display.cc", |
| 39 "gpu/drm_display.h", | 39 "gpu/drm_display.h", |
| 40 "gpu/drm_gpu_display_manager.cc", | 40 "gpu/drm_gpu_display_manager.cc", |
| 41 "gpu/drm_gpu_display_manager.h", | 41 "gpu/drm_gpu_display_manager.h", |
| 42 "gpu/drm_gpu_platform_support.cc", | 42 "gpu/drm_gpu_platform_support.cc", |
| 43 "gpu/drm_gpu_platform_support.h", | 43 "gpu/drm_gpu_platform_support.h", |
| 44 "gpu/drm_overlay_candidate.cc", |
| 45 "gpu/drm_overlay_candidate.h", |
| 44 "gpu/drm_thread.cc", | 46 "gpu/drm_thread.cc", |
| 45 "gpu/drm_thread.h", | 47 "gpu/drm_thread.h", |
| 46 "gpu/drm_thread_message_proxy.cc", | 48 "gpu/drm_thread_message_proxy.cc", |
| 47 "gpu/drm_thread_message_proxy.h", | 49 "gpu/drm_thread_message_proxy.h", |
| 48 "gpu/drm_thread_proxy.cc", | 50 "gpu/drm_thread_proxy.cc", |
| 49 "gpu/drm_thread_proxy.h", | 51 "gpu/drm_thread_proxy.h", |
| 50 "gpu/drm_vsync_provider.cc", | 52 "gpu/drm_vsync_provider.cc", |
| 51 "gpu/drm_vsync_provider.h", | 53 "gpu/drm_vsync_provider.h", |
| 52 "gpu/drm_window.cc", | 54 "gpu/drm_window.cc", |
| 53 "gpu/drm_window.h", | 55 "gpu/drm_window.h", |
| (...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 163 | 165 |
| 164 deps = [ | 166 deps = [ |
| 165 "//skia", | 167 "//skia", |
| 166 "//testing/gtest", | 168 "//testing/gtest", |
| 167 "//ui/gfx", | 169 "//ui/gfx", |
| 168 "//ui/ozone", | 170 "//ui/ozone", |
| 169 ] | 171 ] |
| 170 | 172 |
| 171 public_configs = [ ":libdrm" ] | 173 public_configs = [ ":libdrm" ] |
| 172 } | 174 } |
| OLD | NEW |