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

Unified Diff: components/BUILD.gn

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 | « chrome/common/chrome_switches.cc ('k') | components/OWNERS » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/BUILD.gn
diff --git a/components/BUILD.gn b/components/BUILD.gn
index b0b5bbd8aa0e795d57e3da64fc7c9c597603c415..6433703dad7bf7b15c961cdd3deecaa6b7f51661 100644
--- a/components/BUILD.gn
+++ b/components/BUILD.gn
@@ -114,6 +114,8 @@ group("all_components") {
"//components/devtools_discovery",
"//components/devtools_http_handler",
"//components/domain_reliability",
+ "//components/exo",
+ "//components/exo/wayland",
"//components/feedback",
"//components/gcm_driver/crypto",
"//components/gcm_driver/instance_id",
@@ -229,6 +231,14 @@ group("all_components") {
if (is_chromeos && enable_arc) {
deps += [ "//components/arc" ]
}
+
+ if (!use_ash) {
+ deps -= [ "//components/exo" ]
+ }
+
+ if (!use_ash || !is_linux) {
+ deps -= [ "//components/exo/wayland" ]
+ }
} else {
deps += [
"//components/autofill/ios/browser",
« no previous file with comments | « chrome/common/chrome_switches.cc ('k') | components/OWNERS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698