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

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

Issue 2904443004: Allow generation of a chromium outdirs when enable_extensions=false (Closed)
Patch Set: Rebase Created 3 years, 6 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
« no previous file with comments | « chrome/browser/media/router/BUILD.gn ('k') | chrome/test/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/ui/BUILD.gn
diff --git a/chrome/browser/ui/BUILD.gn b/chrome/browser/ui/BUILD.gn
index 23210215b08442f7533fc6e0868293f11e936e0a..09addc813465e8ebc3dbcdf6a1f371df3674db37 100644
--- a/chrome/browser/ui/BUILD.gn
+++ b/chrome/browser/ui/BUILD.gn
@@ -1086,8 +1086,6 @@ split_static_library("ui") {
"zoom/chrome_zoom_level_prefs.h",
]
deps += [
- "//apps",
- "//apps/ui/views",
"//chrome/app/vector_icons",
"//chrome/browser/profile_resetter:profile_reset_report_proto",
"//chrome/common:features",
@@ -1098,11 +1096,18 @@ split_static_library("ui") {
"//components/web_modal",
"//components/zoom",
"//device/bluetooth",
- "//extensions/common:mojo",
"//mash/public/interfaces",
"//services/device/public/interfaces",
"//ui/vector_icons",
]
+
+ if (enable_extensions) {
+ deps += [
+ "//apps",
+ "//apps/ui/views",
+ "//extensions/common:mojo",
+ ]
+ }
}
if (enable_basic_printing || enable_print_preview) {
« no previous file with comments | « chrome/browser/media/router/BUILD.gn ('k') | chrome/test/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698