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

Unified Diff: chrome/browser/BUILD.gn

Issue 2904443004: Allow generation of a chromium outdirs when enable_extensions=false (Closed)
Patch Set: Add assert(enable_extensions) to apps/BUILD.gn and fixup chrome/browser/media/router/BUILD.gn 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/BUILD.gn
diff --git a/chrome/browser/BUILD.gn b/chrome/browser/BUILD.gn
index cbd8c2d9eeef0f2791452c548c52cdf7f35cea9a..0ec0bc82cd3a5eba92d135e42463bb80ccf16b20 100644
--- a/chrome/browser/BUILD.gn
+++ b/chrome/browser/BUILD.gn
@@ -3672,7 +3672,6 @@ split_static_library("browser") {
]
deps += [
":theme_properties",
- "//apps",
"//chrome/browser/policy:path_parser",
"//chrome/browser/profile_resetter:profile_reset_report_proto",
"//chrome/common/importer:interfaces",
@@ -3682,6 +3681,9 @@ split_static_library("browser") {
"//components/web_modal",
"//net:net_browser_services",
]
+ if (enable_extensions) {
+ deps += [ "//apps" ]
+ }
}
if (enable_pepper_cdms) {
« BUILD.gn ('K') | « apps/ui/views/BUILD.gn ('k') | chrome/browser/devtools/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698