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

Unified Diff: content/BUILD.gn

Issue 542883003: GN: Make content and content_shell work when !enable_plugins (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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 | content/child/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 30d4109246c5a02f3f67b5e2ec5af3abcfebe7d3..22c0332310e306b114157379f6507299bb8c6f6b 100644
--- a/content/BUILD.gn
+++ b/content/BUILD.gn
@@ -12,7 +12,6 @@ config("content_implementation") {
content_shared_components = [
"//content/gpu",
"//content/plugin",
- "//content/ppapi_plugin",
"//content/public/browser:sources",
"//content/public/child",
"//content/public/common",
@@ -22,6 +21,10 @@ content_shared_components = [
"//content/renderer",
]
+if (enable_plugins) {
+ content_shared_components += [ "//content/ppapi_plugin" ]
+}
+
if (is_component_build) {
shared_library("content") {
deps = content_shared_components + [
« no previous file with comments | « no previous file | content/child/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698