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

Side by Side Diff: components/exo/wayland/BUILD.gn

Issue 2750173006: exo: Explicitly initialize Ozone in wayland clients. (Closed)
Patch Set: Add client base ozone dep. Created 3 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 | components/exo/wayland/clients/client_base.cc » ('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 2015 The Chromium Authors. All rights reserved. 1 # Copyright 2015 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("//build/config/ui.gni") 6 import("//build/config/ui.gni")
7 import("//ui/base/ui_features.gni") 7 import("//ui/base/ui_features.gni")
8 import("//ui/ozone/ozone.gni") 8 import("//ui/ozone/ozone.gni")
9 9
10 if (use_xkbcommon) { 10 if (use_xkbcommon) {
(...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after
100 "//third_party/wayland-protocols:presentation_time_protocol", 100 "//third_party/wayland-protocols:presentation_time_protocol",
101 "//ui/gl", 101 "//ui/gl",
102 "//ui/gl/init", 102 "//ui/gl/init",
103 ] 103 ]
104 if (ozone_platform_gbm) { 104 if (ozone_platform_gbm) {
105 configs += [ 105 configs += [
106 ":libdrm", 106 ":libdrm",
107 "//ui/gl:gl_config", 107 "//ui/gl:gl_config",
108 ] 108 ]
109 defines = [ "OZONE_PLATFORM_GBM" ] 109 defines = [ "OZONE_PLATFORM_GBM" ]
110 deps += [ "//third_party/minigbm" ] 110 deps += [
111 "//third_party/minigbm",
112 "//ui/ozone",
113 ]
111 } 114 }
112 } 115 }
113 116
114 executable("wayland_rects_client") { 117 executable("wayland_rects_client") {
115 sources = [ 118 sources = [
116 "clients/rects.cc", 119 "clients/rects.cc",
117 ] 120 ]
118 121
119 deps = [ 122 deps = [
120 ":client_lib", 123 ":client_lib",
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
180 ] 183 ]
181 184
182 configs += [ 185 configs += [
183 ":libdrm", 186 ":libdrm",
184 "//ui/gl:gl_config", 187 "//ui/gl:gl_config",
185 ] 188 ]
186 defines = [ "OZONE_PLATFORM_GBM" ] 189 defines = [ "OZONE_PLATFORM_GBM" ]
187 deps += [ "//third_party/minigbm" ] 190 deps += [ "//third_party/minigbm" ]
188 } 191 }
189 } 192 }
OLDNEW
« no previous file with comments | « no previous file | components/exo/wayland/clients/client_base.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698