Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(545)

Side by Side Diff: ui/ozone/platform/drm/BUILD.gn

Issue 1311043016: Switch DRM platform to using a separate thread (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@mv-drm-calls-on-thread2
Patch Set: . Created 5 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 27 matching lines...) Expand all
38 "gpu/drm_device_generator.cc", 38 "gpu/drm_device_generator.cc",
39 "gpu/drm_device_generator.h", 39 "gpu/drm_device_generator.h",
40 "gpu/drm_device_manager.cc", 40 "gpu/drm_device_manager.cc",
41 "gpu/drm_device_manager.h", 41 "gpu/drm_device_manager.h",
42 "gpu/drm_display.cc", 42 "gpu/drm_display.cc",
43 "gpu/drm_display.h", 43 "gpu/drm_display.h",
44 "gpu/drm_gpu_display_manager.cc", 44 "gpu/drm_gpu_display_manager.cc",
45 "gpu/drm_gpu_display_manager.h", 45 "gpu/drm_gpu_display_manager.h",
46 "gpu/drm_gpu_platform_support.cc", 46 "gpu/drm_gpu_platform_support.cc",
47 "gpu/drm_gpu_platform_support.h", 47 "gpu/drm_gpu_platform_support.h",
48 "gpu/drm_gpu_platform_support_proxy.cc",
49 "gpu/drm_gpu_platform_support_proxy.h",
50 "gpu/drm_thread.cc",
51 "gpu/drm_thread.h",
48 "gpu/drm_vsync_provider.cc", 52 "gpu/drm_vsync_provider.cc",
49 "gpu/drm_vsync_provider.h", 53 "gpu/drm_vsync_provider.h",
50 "gpu/drm_window.cc", 54 "gpu/drm_window.cc",
51 "gpu/drm_window.h", 55 "gpu/drm_window.h",
52 "gpu/gbm_buffer.cc", 56 "gpu/gbm_buffer.cc",
53 "gpu/gbm_buffer.h", 57 "gpu/gbm_buffer.h",
54 "gpu/gbm_buffer_base.cc", 58 "gpu/gbm_buffer_base.cc",
55 "gpu/gbm_buffer_base.h", 59 "gpu/gbm_buffer_base.h",
56 "gpu/gbm_device.cc", 60 "gpu/gbm_device.cc",
57 "gpu/gbm_device.h", 61 "gpu/gbm_device.h",
58 "gpu/gbm_surface_factory.cc", 62 "gpu/gbm_surface_factory.cc",
59 "gpu/gbm_surface_factory.h", 63 "gpu/gbm_surface_factory.h",
60 "gpu/gbm_surfaceless.cc", 64 "gpu/gbm_surfaceless.cc",
61 "gpu/gbm_surfaceless.h", 65 "gpu/gbm_surfaceless.h",
62 "gpu/hardware_display_controller.cc", 66 "gpu/hardware_display_controller.cc",
63 "gpu/hardware_display_controller.h", 67 "gpu/hardware_display_controller.h",
64 "gpu/hardware_display_plane.cc", 68 "gpu/hardware_display_plane.cc",
65 "gpu/hardware_display_plane.h", 69 "gpu/hardware_display_plane.h",
66 "gpu/hardware_display_plane_manager.cc", 70 "gpu/hardware_display_plane_manager.cc",
67 "gpu/hardware_display_plane_manager.h", 71 "gpu/hardware_display_plane_manager.h",
68 "gpu/hardware_display_plane_manager_legacy.cc", 72 "gpu/hardware_display_plane_manager_legacy.cc",
69 "gpu/hardware_display_plane_manager_legacy.h", 73 "gpu/hardware_display_plane_manager_legacy.h",
70 "gpu/overlay_plane.cc", 74 "gpu/overlay_plane.cc",
71 "gpu/overlay_plane.h", 75 "gpu/overlay_plane.h",
72 "gpu/page_flip_request.cc", 76 "gpu/page_flip_request.cc",
73 "gpu/page_flip_request.h", 77 "gpu/page_flip_request.h",
78 "gpu/proxy_helpers.cc",
79 "gpu/proxy_helpers.h",
74 "gpu/scanout_buffer.h", 80 "gpu/scanout_buffer.h",
75 "gpu/screen_manager.cc", 81 "gpu/screen_manager.cc",
76 "gpu/screen_manager.h", 82 "gpu/screen_manager.h",
77 "host/channel_observer.h", 83 "host/channel_observer.h",
78 "host/drm_cursor.cc", 84 "host/drm_cursor.cc",
79 "host/drm_cursor.h", 85 "host/drm_cursor.h",
80 "host/drm_device_handle.cc", 86 "host/drm_device_handle.cc",
81 "host/drm_device_handle.h", 87 "host/drm_device_handle.h",
82 "host/drm_display_host.cc", 88 "host/drm_display_host.cc",
83 "host/drm_display_host.h", 89 "host/drm_display_host.h",
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after
155 161
156 deps = [ 162 deps = [
157 "//skia", 163 "//skia",
158 "//testing/gtest", 164 "//testing/gtest",
159 "//ui/gfx", 165 "//ui/gfx",
160 "//ui/ozone", 166 "//ui/ozone",
161 ] 167 ]
162 168
163 public_configs = [ ":libdrm" ] 169 public_configs = [ ":libdrm" ]
164 } 170 }
OLDNEW
« no previous file with comments | « no previous file | ui/ozone/platform/drm/gbm.gypi » ('j') | ui/ozone/platform/drm/gpu/drm_gpu_platform_support.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698