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

Unified Diff: content/BUILD.gn

Issue 419913003: Make content_shell link in the GN build. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Android spelling Created 6 years, 5 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 | « build/secondary/third_party/icu/BUILD.gn ('k') | content/app/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/BUILD.gn
diff --git a/content/BUILD.gn b/content/BUILD.gn
index 973a33404e0fe9718abf26c089768d6d65a22ea0..a49a8873ad564258df5c302c5cb55bc14b55559c 100644
--- a/content/BUILD.gn
+++ b/content/BUILD.gn
@@ -9,16 +9,14 @@ config("content_implementation") {
defines = [ "CONTENT_IMPLEMENTATION" ]
}
-content_components = [
- "//content/app",
- "//content/browser",
- "//content/child",
+content_shared_components = [
"//content/gpu",
"//content/plugin",
"//content/ppapi_plugin",
"//content/public/app",
"//content/public/browser",
"//content/public/child",
+ "//content/public/common",
"//content/public/plugin",
"//content/public/renderer",
"//content/renderer",
@@ -27,11 +25,13 @@ content_components = [
if (is_component_build) {
shared_library("content") {
- deps = content_components
+ deps = content_shared_components + [
+ "//content/app",
+ ]
}
} else {
group("content") {
- deps = content_components
+ deps = content_shared_components
}
}
« no previous file with comments | « build/secondary/third_party/icu/BUILD.gn ('k') | content/app/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698