diff options
author | Brett Wilson <brettw@chromium.org> | 2014-09-11 09:58:56 -0700 |
---|---|---|
committer | Brett Wilson <brettw@chromium.org> | 2014-09-11 17:13:07 +0000 |
commit | 8f132304db80d9de8d0df51a568dda65ddec93ef (patch) | |
tree | 496ef8910ec3b471e05d2d2395a501533e2b7507 /content/ppapi_plugin | |
parent | 36e91cd9ac1516a202ab09cc5ea98781c84db0d8 (diff) | |
download | chromium_src-8f132304db80d9de8d0df51a568dda65ddec93ef.zip chromium_src-8f132304db80d9de8d0df51a568dda65ddec93ef.tar.gz chromium_src-8f132304db80d9de8d0df51a568dda65ddec93ef.tar.bz2 |
Make chrome GN build work in component mode.
This also fixes a resources regression (added extensions resources) that caused chrome not to run.
R=jamesr@chromium.org
Review URL: https://codereview.chromium.org/554393009
Cr-Commit-Position: refs/heads/master@{#294406}
Diffstat (limited to 'content/ppapi_plugin')
-rw-r--r-- | content/ppapi_plugin/BUILD.gn | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/content/ppapi_plugin/BUILD.gn b/content/ppapi_plugin/BUILD.gn index 55c5d3b..6c111ec 100644 --- a/content/ppapi_plugin/BUILD.gn +++ b/content/ppapi_plugin/BUILD.gn @@ -3,6 +3,8 @@ # found in the LICENSE file. source_set("ppapi_plugin") { + visibility = [ "//content/*" ] + sources = [ "broker_process_dispatcher.cc", "broker_process_dispatcher.h", @@ -21,6 +23,8 @@ source_set("ppapi_plugin") { deps = [ "//base", "//content:export", + "//content/public/child:child_sources", + "//content/public/common:common_sources", "//mojo/public/interfaces/application", "//ppapi:ppapi_ipc", "//skia", |