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

Unified Diff: chrome/BUILD.gn

Issue 554393009: Make chrome GN build work in component mode. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: undo gyp changes Created 6 years, 3 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 | « no previous file | chrome/browser/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/BUILD.gn
diff --git a/chrome/BUILD.gn b/chrome/BUILD.gn
index d49ff3db1e649e68d0fd86d9161c3e835ffa2a86..554f91d5b1a05da6ec583efccfd736d49e2751d2 100644
--- a/chrome/BUILD.gn
+++ b/chrome/BUILD.gn
@@ -173,12 +173,12 @@ shared_library("main_dll") {
if (false) { #chrome_multiple_dll) {
defines = [ "CHROME_MULTIPLE_DLL_BROWSER" ]
deps += [
- "//content/app:browser",
+ "//content/public/app:browser",
]
} else {
deps += [
":child_dependencies",
- "//content/app:both",
+ "//content/public/app:both",
]
}
@@ -230,8 +230,7 @@ group("child_dependencies") {
"//chrome/plugin",
"//chrome/renderer",
"//chrome/utility",
- "//content/gpu",
- "//content/ppapi_plugin",
+ "//content/public/child",
"//third_party/WebKit/public:blink_devtools_frontend_resources",
]
}
@@ -481,6 +480,11 @@ template("chrome_repack_percent") {
]
deps += [ "//ui/chromeos/resources" ]
}
+ if (enable_extensions) {
+ sources += [
+ "$root_gen_dir/extensions/extensions_browser_resources_${percent}_percent.pak",
+ ]
+ }
output = repack_output_file
}
« no previous file with comments | « no previous file | chrome/browser/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698