| 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" ]
|
| }
|
| }
|
| }
|
|
|