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

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

Issue 479713002: [Ozone-GBM] Adding NativeWindowDelegate to IPC window changes to the GPU (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 6 years, 4 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 | Annotate | Revision Log
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 pkg_config("libdrm") { 8 pkg_config("libdrm") {
9 packages = [ "libdrm" ] 9 packages = [ "libdrm" ]
10 } 10 }
(...skipping 21 matching lines...) Expand all
32 "dri_util.cc", 32 "dri_util.cc",
33 "dri_util.h", 33 "dri_util.h",
34 "dri_vsync_provider.cc", 34 "dri_vsync_provider.cc",
35 "dri_vsync_provider.h", 35 "dri_vsync_provider.h",
36 "dri_window.cc", 36 "dri_window.cc",
37 "dri_window.h", 37 "dri_window.h",
38 "dri_wrapper.cc", 38 "dri_wrapper.cc",
39 "dri_wrapper.h", 39 "dri_wrapper.h",
40 "hardware_display_controller.cc", 40 "hardware_display_controller.cc",
41 "hardware_display_controller.h", 41 "hardware_display_controller.h",
42 "native_window_delegate.h",
43 "native_window_delegate_impl.cc",
44 "native_window_delegate_impl.h",
45 "native_window_manager.cc",
46 "native_window_manager.h",
42 "scoped_drm_types.cc", 47 "scoped_drm_types.cc",
43 "scoped_drm_types.h", 48 "scoped_drm_types.h",
44 "screen_manager.cc", 49 "screen_manager.cc",
45 "screen_manager.h", 50 "screen_manager.h",
46 "scanout_buffer.h", 51 "scanout_buffer.h",
47 "virtual_terminal_manager.cc", 52 "virtual_terminal_manager.cc",
48 "virtual_terminal_manager.h", 53 "virtual_terminal_manager.h",
49 ] 54 ]
50 55
51 deps = [ 56 deps = [
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after
116 "gbm_surface.cc", 121 "gbm_surface.cc",
117 "gbm_surface.h", 122 "gbm_surface.h",
118 "gbm_surfaceless.cc", 123 "gbm_surfaceless.cc",
119 "gbm_surfaceless.h", 124 "gbm_surfaceless.h",
120 "gbm_surface_factory.cc", 125 "gbm_surface_factory.cc",
121 "gbm_surface_factory.h", 126 "gbm_surface_factory.h",
122 "gpu_platform_support_gbm.cc", 127 "gpu_platform_support_gbm.cc",
123 "gpu_platform_support_gbm.h", 128 "gpu_platform_support_gbm.h",
124 "gpu_platform_support_host_gbm.cc", 129 "gpu_platform_support_host_gbm.cc",
125 "gpu_platform_support_host_gbm.h", 130 "gpu_platform_support_host_gbm.h",
131 "native_window_delegate_proxy.cc",
132 "native_window_delegate_proxy.h",
126 "ozone_platform_gbm.cc", 133 "ozone_platform_gbm.cc",
127 "ozone_platform_gbm.h", 134 "ozone_platform_gbm.h",
128 ] 135 ]
129 136
130 deps = [ 137 deps = [
131 ":dri_common", 138 ":dri_common",
132 "//base", 139 "//base",
133 "//skia", 140 "//skia",
134 "//ui/events/ozone:events_ozone_evdev", 141 "//ui/events/ozone:events_ozone_evdev",
135 ] 142 ]
136 143
137 direct_dependent_configs = [ 144 direct_dependent_configs = [
138 ":libgbm", 145 ":libgbm",
139 ] 146 ]
140 } 147 }
141 } 148 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698