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

Unified Diff: components/BUILD.gn

Issue 1412093006: components: Add Exosphere component. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase on improved shared memory support 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
Index: components/BUILD.gn
diff --git a/components/BUILD.gn b/components/BUILD.gn
index cb34a37033e5c9669116313b967066a5245ac3af..a2077cdf5da04f063e778143bdd5535dbc7a1dbb 100644
--- a/components/BUILD.gn
+++ b/components/BUILD.gn
@@ -74,6 +74,8 @@ group("all_components") {
"//components/devtools_http_handler",
"//components/dom_distiller/core",
"//components/domain_reliability",
+ "//components/exo",
+ "//components/exo/wayland",
"//components/favicon/core",
"//components/favicon_base",
"//components/feedback",
@@ -210,6 +212,14 @@ group("all_components") {
"//components/wifi_sync",
]
}
+
+ if (!use_ash) {
+ deps -= [ "//components/exo" ]
+ }
+
+ if (!use_ash || !is_linux) {
+ deps -= [ "//components/exo/wayland" ]
+ }
}
if (toolkit_views) {

Powered by Google App Engine
This is Rietveld 408576698