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

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

Issue 981583005: [Ozone-Dri] Merge the DriWindowDelegate with the implementation (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 9 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
« no previous file with comments | « no previous file | 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 declare_args() { 8 declare_args() {
9 use_mesa_platform_null = false 9 use_mesa_platform_null = false
10 } 10 }
(...skipping 27 matching lines...) Expand all
38 "dri_surface.cc", 38 "dri_surface.cc",
39 "dri_surface.h", 39 "dri_surface.h",
40 "dri_surface_factory.cc", 40 "dri_surface_factory.cc",
41 "dri_surface_factory.h", 41 "dri_surface_factory.h",
42 "dri_util.cc", 42 "dri_util.cc",
43 "dri_util.h", 43 "dri_util.h",
44 "dri_vsync_provider.cc", 44 "dri_vsync_provider.cc",
45 "dri_vsync_provider.h", 45 "dri_vsync_provider.h",
46 "dri_window.cc", 46 "dri_window.cc",
47 "dri_window.h", 47 "dri_window.h",
48 "dri_window_delegate.cc",
48 "dri_window_delegate.h", 49 "dri_window_delegate.h",
49 "dri_window_delegate_impl.cc",
50 "dri_window_delegate_impl.h",
51 "dri_window_delegate_manager.cc", 50 "dri_window_delegate_manager.cc",
52 "dri_window_delegate_manager.h", 51 "dri_window_delegate_manager.h",
53 "dri_window_manager.cc", 52 "dri_window_manager.cc",
54 "dri_window_manager.h", 53 "dri_window_manager.h",
55 "drm_device.cc", 54 "drm_device.cc",
56 "drm_device.h", 55 "drm_device.h",
57 "drm_device_generator.cc", 56 "drm_device_generator.cc",
58 "drm_device_generator.h", 57 "drm_device_generator.h",
59 "drm_device_manager.cc", 58 "drm_device_manager.cc",
60 "drm_device_manager.h", 59 "drm_device_manager.h",
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
113 "//skia", 112 "//skia",
114 "//ui/events/ozone:events_ozone_evdev", 113 "//ui/events/ozone:events_ozone_evdev",
115 "//ui/events/ozone:events_ozone_layout", 114 "//ui/events/ozone:events_ozone_layout",
116 ] 115 ]
117 } 116 }
118 117
119 source_set("dri_unittests") { 118 source_set("dri_unittests") {
120 testonly = true 119 testonly = true
121 sources = [ 120 sources = [
122 "dri_surface_unittest.cc", 121 "dri_surface_unittest.cc",
123 "dri_window_delegate_impl_unittest.cc", 122 "dri_window_delegate_unittest.cc",
124 "hardware_display_controller_unittest.cc", 123 "hardware_display_controller_unittest.cc",
125 "hardware_display_plane_manager_unittest.cc", 124 "hardware_display_plane_manager_unittest.cc",
126 "screen_manager_unittest.cc", 125 "screen_manager_unittest.cc",
127 "test/mock_dri_wrapper.cc", 126 "test/mock_dri_wrapper.cc",
128 "test/mock_dri_wrapper.h", 127 "test/mock_dri_wrapper.h",
129 ] 128 ]
130 129
131 deps = [ 130 deps = [
132 "//skia", 131 "//skia",
133 "//testing/gtest", 132 "//testing/gtest",
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
169 "//ui/events/ozone:events_ozone_layout", 168 "//ui/events/ozone:events_ozone_layout",
170 ] 169 ]
171 170
172 public_configs = [ ":libgbm" ] 171 public_configs = [ ":libgbm" ]
173 172
174 if (use_mesa_platform_null) { 173 if (use_mesa_platform_null) {
175 defines += [ "USE_MESA_PLATFORM_NULL" ] 174 defines += [ "USE_MESA_PLATFORM_NULL" ]
176 } 175 }
177 } 176 }
178 } 177 }
OLDNEW
« no previous file with comments | « no previous file | ui/ozone/platform/dri/dri.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698