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

Unified Diff: chrome/browser/ui/BUILD.gn

Issue 2904443004: Allow generation of a chromium outdirs when enable_extensions=false (Closed)
Patch Set: Fix error from "gn gen out --check" Created 3 years, 7 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/ui/BUILD.gn
diff --git a/chrome/browser/ui/BUILD.gn b/chrome/browser/ui/BUILD.gn
index 9ada38d62b9ac14a40d758e11f970863cc529e7b..373c2eb4d213f1ce219213cb5f013c2aed4ed3c9 100644
--- a/chrome/browser/ui/BUILD.gn
+++ b/chrome/browser/ui/BUILD.gn
@@ -1205,11 +1205,14 @@ split_static_library("ui") {
"//components/proximity_auth/webui",
"//components/web_modal",
"//device/bluetooth",
- "//extensions/common:mojo",
"//mash/public/interfaces",
"//services/device/public/interfaces",
"//ui/vector_icons",
]
+
+ if (enable_extensions) {
+ deps += [ "//extensions/common:mojo" ]
+ }
}
if (enable_basic_printing || enable_print_preview) {

Powered by Google App Engine
This is Rietveld 408576698