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

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: Fix name 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
« no previous file with comments | « ui/ozone/common/gpu/ozone_gpu_messages.h ('k') | ui/ozone/platform/dri/dri.gypi » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 17 matching lines...) Expand all
28 "dri_surface.cc", 28 "dri_surface.cc",
29 "dri_surface.h", 29 "dri_surface.h",
30 "dri_surface_factory.cc", 30 "dri_surface_factory.cc",
31 "dri_surface_factory.h", 31 "dri_surface_factory.h",
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_window_delegate.h",
39 "dri_window_delegate_impl.cc",
40 "dri_window_delegate_impl.h",
41 "dri_window_manager.cc",
42 "dri_window_manager.h",
38 "dri_wrapper.cc", 43 "dri_wrapper.cc",
39 "dri_wrapper.h", 44 "dri_wrapper.h",
40 "hardware_display_controller.cc", 45 "hardware_display_controller.cc",
41 "hardware_display_controller.h", 46 "hardware_display_controller.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",
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
102 pkg_config("libgbm") { 107 pkg_config("libgbm") {
103 packages = [ "gbm" ] 108 packages = [ "gbm" ]
104 } 109 }
105 110
106 source_set("gbm") { 111 source_set("gbm") {
107 sources = [ 112 sources = [
108 "chromeos/display_message_handler.cc", 113 "chromeos/display_message_handler.cc",
109 "chromeos/display_message_handler.h", 114 "chromeos/display_message_handler.h",
110 "chromeos/native_display_delegate_proxy.cc", 115 "chromeos/native_display_delegate_proxy.cc",
111 "chromeos/native_display_delegate_proxy.h", 116 "chromeos/native_display_delegate_proxy.h",
117 "dri_window_delegate_proxy.cc",
118 "dri_window_delegate_proxy.h",
112 "gbm_buffer.cc", 119 "gbm_buffer.cc",
113 "gbm_buffer.h", 120 "gbm_buffer.h",
114 "gbm_buffer_base.cc", 121 "gbm_buffer_base.cc",
115 "gbm_buffer_base.h", 122 "gbm_buffer_base.h",
116 "gbm_surface.cc", 123 "gbm_surface.cc",
117 "gbm_surface.h", 124 "gbm_surface.h",
118 "gbm_surfaceless.cc", 125 "gbm_surfaceless.cc",
119 "gbm_surfaceless.h", 126 "gbm_surfaceless.h",
120 "gbm_surface_factory.cc", 127 "gbm_surface_factory.cc",
121 "gbm_surface_factory.h", 128 "gbm_surface_factory.h",
(...skipping 10 matching lines...) Expand all
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
« no previous file with comments | « ui/ozone/common/gpu/ozone_gpu_messages.h ('k') | ui/ozone/platform/dri/dri.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698