diff options
author | thestig@chromium.org <thestig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-10-29 00:18:26 +0000 |
---|---|---|
committer | thestig@chromium.org <thestig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-10-29 00:18:26 +0000 |
commit | 248d3b7f03af711d4d1930b1ab1317f90c033c0c (patch) | |
tree | ae8e54dbc51ac6b790e5c30c7d10a297650a8c3f | |
parent | 608de6c37623cffef25091a29ad9eb8a22406367 (diff) | |
download | chromium_src-248d3b7f03af711d4d1930b1ab1317f90c033c0c.zip chromium_src-248d3b7f03af711d4d1930b1ab1317f90c033c0c.tar.gz chromium_src-248d3b7f03af711d4d1930b1ab1317f90c033c0c.tar.bz2 |
Cleanup: Clamp down DEPS in chrome/renderer; remove obsolete entries.
R=brettw@chromium.org
Review URL: https://codereview.chromium.org/29603008
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@231455 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r-- | chrome/renderer/DEPS | 8 | ||||
-rw-r--r-- | chrome/renderer/chrome_render_process_observer.cc | 1 | ||||
-rw-r--r-- | chrome/renderer/pepper/DEPS | 2 | ||||
-rw-r--r-- | chrome/renderer/plugins/DEPS | 3 | ||||
-rw-r--r-- | chrome/renderer/safe_browsing/DEPS | 3 |
5 files changed, 8 insertions, 9 deletions
diff --git a/chrome/renderer/DEPS b/chrome/renderer/DEPS index cc3dfff..5d98d35 100644 --- a/chrome/renderer/DEPS +++ b/chrome/renderer/DEPS @@ -9,12 +9,8 @@ include_rules = [ "+content/public/renderer", "+extensions/common", "+grit", # For generated headers - "+media/base", # For initializing media library and media switches. - "+ppapi/native_client/src/trusted/plugin/nacl_entry_points.h", # For NaCl registration. "+ppapi/c", - "+ppapi/proxy", "+ppapi/shared_impl", - "+sandbox/win/src", "+skia", "+webkit/child", @@ -22,9 +18,5 @@ include_rules = [ "+webkit/glue", "+webkit/renderer", - "+third_party/npapi/bindings", - "+third_party/re2", - "+third_party/smhasher", "+third_party/sqlite", - "+third_party/widevine", ] diff --git a/chrome/renderer/chrome_render_process_observer.cc b/chrome/renderer/chrome_render_process_observer.cc index 2876f42..a5475a5 100644 --- a/chrome/renderer/chrome_render_process_observer.cc +++ b/chrome/renderer/chrome_render_process_observer.cc @@ -36,7 +36,6 @@ #include "content/public/renderer/render_view.h" #include "content/public/renderer/render_view_visitor.h" #include "crypto/nss_util.h" -#include "media/base/media_switches.h" #include "net/base/net_errors.h" #include "net/base/net_module.h" #include "third_party/WebKit/public/web/WebCache.h" diff --git a/chrome/renderer/pepper/DEPS b/chrome/renderer/pepper/DEPS index ea5f65b..40e81e2 100644 --- a/chrome/renderer/pepper/DEPS +++ b/chrome/renderer/pepper/DEPS @@ -1,6 +1,8 @@ include_rules = [ "+components/nacl/common", "+ppapi/host", + "+ppapi/native_client/src/trusted/plugin/nacl_entry_points.h", # For NaCl registration. + "+ppapi/proxy", # TODO(raymes): Once all of the resources are refactored to the new pepper # resource model, these includes shouldn't be needed. diff --git a/chrome/renderer/plugins/DEPS b/chrome/renderer/plugins/DEPS new file mode 100644 index 0000000..9883c71 --- /dev/null +++ b/chrome/renderer/plugins/DEPS @@ -0,0 +1,3 @@ +include_rules = [ + "+third_party/widevine", +] diff --git a/chrome/renderer/safe_browsing/DEPS b/chrome/renderer/safe_browsing/DEPS new file mode 100644 index 0000000..aa579c4 --- /dev/null +++ b/chrome/renderer/safe_browsing/DEPS @@ -0,0 +1,3 @@ +include_rules = [ + "+third_party/smhasher", +] |