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

Unified Diff: content/public/child/BUILD.gn

Issue 2658693005: Fixes compile and gn-check errors with enable_plugins=false. (Closed)
Patch Set: Created 3 years, 11 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 | « content/ppapi_plugin/BUILD.gn ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/public/child/BUILD.gn
diff --git a/content/public/child/BUILD.gn b/content/public/child/BUILD.gn
index 26d28e543e6dda33b46049c37646110fd11f72d6..808490945f97943f270cd0b03887fda377308d23 100644
--- a/content/public/child/BUILD.gn
+++ b/content/public/child/BUILD.gn
@@ -2,6 +2,8 @@
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
+import("//ppapi/features/features.gni")
+
# See //content/BUILD.gn for how this works.
group("child") {
if (is_component_build) {
@@ -13,10 +15,10 @@ group("child") {
":child_sources",
]
if (!is_android) {
- public_deps += [
- "//content/gpu",
- "//content/ppapi_plugin",
- ]
+ public_deps += [ "//content/gpu" ]
+ }
+ if (enable_plugins) {
+ public_deps += [ "//content/ppapi_plugin" ]
}
}
}
« no previous file with comments | « content/ppapi_plugin/BUILD.gn ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698