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

Unified Diff: build/config/ui.gni

Issue 1412093006: components: Add Exosphere component. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: remove some ifdefs Created 5 years, 1 month 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « build/config/BUILD.gn ('k') | chrome/browser/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/config/ui.gni
diff --git a/build/config/ui.gni b/build/config/ui.gni
index 3acf6556603f299694aa10d7796cf240b0cfb9cc..fa4f142ea9f19a00e6597caaf51300a03dc42505 100644
--- a/build/config/ui.gni
+++ b/build/config/ui.gni
@@ -46,6 +46,9 @@ declare_args() {
# Whether we should use glib, a low level C utility library.
use_glib = is_linux
+
+ # Indicates if Wayland display server support is enabled.
+ enable_wayland_server = is_chromeos
}
# Additional dependent variables -----------------------------------------------
@@ -66,6 +69,11 @@ if (use_ozone) {
use_glib = false
}
+# Turn off Wayland if glib is enabled.
+if (use_glib) {
+ enable_wayland_server = false
+}
+
if (is_linux && !use_ozone) {
use_cairo = true
use_pango = true
« no previous file with comments | « build/config/BUILD.gn ('k') | chrome/browser/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698