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

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",
48 "gpu/drm_surface.cc", 50 "gpu/drm_surface.cc",
49 "gpu/drm_surface.h", 51 "gpu/drm_surface.h",
50 "gpu/drm_surface_factory.cc", 52 "gpu/drm_surface_factory.cc",
51 "gpu/drm_surface_factory.h", 53 "gpu/drm_surface_factory.h",
54 "gpu/drm_thread.cc",
55 "gpu/drm_thread.h",
52 "gpu/drm_vsync_provider.cc", 56 "gpu/drm_vsync_provider.cc",
53 "gpu/drm_vsync_provider.h", 57 "gpu/drm_vsync_provider.h",
54 "gpu/drm_window.cc", 58 "gpu/drm_window.cc",
55 "gpu/drm_window.h", 59 "gpu/drm_window.h",
60 "gpu/drm_window_proxy.cc",
61 "gpu/drm_window_proxy.h",
56 "gpu/hardware_display_controller.cc", 62 "gpu/hardware_display_controller.cc",
57 "gpu/hardware_display_controller.h", 63 "gpu/hardware_display_controller.h",
58 "gpu/hardware_display_plane.cc", 64 "gpu/hardware_display_plane.cc",
59 "gpu/hardware_display_plane.h", 65 "gpu/hardware_display_plane.h",
60 "gpu/hardware_display_plane_manager.cc", 66 "gpu/hardware_display_plane_manager.cc",
61 "gpu/hardware_display_plane_manager.h", 67 "gpu/hardware_display_plane_manager.h",
62 "gpu/hardware_display_plane_manager_legacy.cc", 68 "gpu/hardware_display_plane_manager_legacy.cc",
63 "gpu/hardware_display_plane_manager_legacy.h", 69 "gpu/hardware_display_plane_manager_legacy.h",
64 "gpu/overlay_plane.cc", 70 "gpu/overlay_plane.cc",
65 "gpu/overlay_plane.h", 71 "gpu/overlay_plane.h",
66 "gpu/page_flip_request.cc", 72 "gpu/page_flip_request.cc",
67 "gpu/page_flip_request.h", 73 "gpu/page_flip_request.h",
74 "gpu/proxy_helpers.cc",
75 "gpu/proxy_helpers.h",
68 "gpu/scanout_buffer.h", 76 "gpu/scanout_buffer.h",
69 "gpu/screen_manager.cc", 77 "gpu/screen_manager.cc",
70 "gpu/screen_manager.h", 78 "gpu/screen_manager.h",
71 "host/channel_observer.h", 79 "host/channel_observer.h",
72 "host/drm_cursor.cc", 80 "host/drm_cursor.cc",
73 "host/drm_cursor.h", 81 "host/drm_cursor.h",
74 "host/drm_device_handle.cc", 82 "host/drm_device_handle.cc",
75 "host/drm_device_handle.h", 83 "host/drm_device_handle.h",
76 "host/drm_display_host.cc", 84 "host/drm_display_host.cc",
77 "host/drm_display_host.h", 85 "host/drm_display_host.h",
(...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after
207 if (use_vgem_map) { 215 if (use_vgem_map) {
208 defines += [ "USE_VGEM_MAP" ] 216 defines += [ "USE_VGEM_MAP" ]
209 217
210 sources += [ 218 sources += [
211 "gpu/client_native_pixmap_vgem.cc", 219 "gpu/client_native_pixmap_vgem.cc",
212 "gpu/client_native_pixmap_vgem.h", 220 "gpu/client_native_pixmap_vgem.h",
213 ] 221 ]
214 } 222 }
215 } 223 }
216 } 224 }
OLDNEW
« no previous file with comments | « no previous file | ui/ozone/platform/drm/drm.gypi » ('j') | ui/ozone/platform/drm/gpu/drm_surface_factory.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698