summaryrefslogtreecommitdiffstats
path: root/ppapi
diff options
context:
space:
mode:
authorbrettw <brettw@chromium.org>2015-10-14 15:25:00 -0700
committerCommit bot <commit-bot@chromium.org>2015-10-14 22:26:00 +0000
commitfdb7f7fa8b32547063721d66e504bbabd804a574 (patch)
tree278c3d851163bcbee4c4f8a04d096246cdf9e056 /ppapi
parenta76aff9561f138b52e6beb94828491c94fd8b924 (diff)
downloadchromium_src-fdb7f7fa8b32547063721d66e504bbabd804a574.zip
chromium_src-fdb7f7fa8b32547063721d66e504bbabd804a574.tar.gz
chromium_src-fdb7f7fa8b32547063721d66e504bbabd804a574.tar.bz2
Make chrome/common pass "gn check"
This adds some dependencies and marks them all public. Since chrome/common doesn't have much of an API or structure, deciding what should be public or not is basically impossible. Removes the include of content_switches from chrome_switches. Files depending on this have already been updated to include content_switches directly. Moves the nss_security_manager code out of chrome_browser. This was used only by chrome_common. In GYP This is now part of chrome_common_net. In GN, this is a separate target that chrome_common_net depends on. Review URL: https://codereview.chromium.org/1393953003 Cr-Commit-Position: refs/heads/master@{#354132}
Diffstat (limited to 'ppapi')
-rw-r--r--ppapi/shared_impl/BUILD.gn7
1 files changed, 5 insertions, 2 deletions
diff --git a/ppapi/shared_impl/BUILD.gn b/ppapi/shared_impl/BUILD.gn
index 25ad904..3b92a0a 100644
--- a/ppapi/shared_impl/BUILD.gn
+++ b/ppapi/shared_impl/BUILD.gn
@@ -159,6 +159,11 @@ component("shared_impl") {
"PPAPI_THUNK_IMPLEMENTATION",
]
+ public_deps = [
+ "//ppapi/c",
+ "//ppapi/thunk",
+ ]
+
deps = [
"//base",
"//base:i18n",
@@ -169,8 +174,6 @@ component("shared_impl") {
"//gpu/command_buffer/common",
"//ipc",
"//media:shared_memory_support",
- "//ppapi/c",
- "//ppapi/thunk",
"//third_party/icu:icuuc",
"//url",
]