| Index: content/ppapi_plugin/BUILD.gn
|
| diff --git a/content/ppapi_plugin/BUILD.gn b/content/ppapi_plugin/BUILD.gn
|
| index e127a3d27560139d510f6736d757ff91d2716978..eb608e72631f078ce8779a6f02b003897a2744f5 100644
|
| --- a/content/ppapi_plugin/BUILD.gn
|
| +++ b/content/ppapi_plugin/BUILD.gn
|
| @@ -3,7 +3,7 @@
|
| # found in the LICENSE file.
|
|
|
| group("ppapi_plugin") {
|
| - visibility = [ "//content/*" ]
|
| + visibility = [ "//content/*" ] # This is an internal content API.
|
|
|
| if (is_component_build) {
|
| public_deps = [
|
| @@ -17,7 +17,11 @@ group("ppapi_plugin") {
|
| }
|
|
|
| source_set("ppapi_plugin_sources") {
|
| - visibility = [ "//content/*" ]
|
| + # Depend on via ":ppapi_plugin above.
|
| + visibility = [
|
| + ":ppapi_plugin",
|
| + "//content", # For the component build.
|
| + ]
|
|
|
| sources = [
|
| "broker_process_dispatcher.cc",
|
|
|