diff options
author | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-06-24 05:16:08 +0000 |
---|---|---|
committer | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-06-24 05:16:08 +0000 |
commit | ac55e29f93a7f7edc2ddac6d909f5c25bf5d7cba (patch) | |
tree | a4093c4446401ab09643c045701e901142ba91b6 /content/DEPS | |
parent | 45661171f72daa6250088584a6067a3202d3632a (diff) | |
download | chromium_src-ac55e29f93a7f7edc2ddac6d909f5c25bf5d7cba.zip chromium_src-ac55e29f93a7f7edc2ddac6d909f5c25bf5d7cba.tar.gz chromium_src-ac55e29f93a7f7edc2ddac6d909f5c25bf5d7cba.tar.bz2 |
Get rid of the implicit content dependency on how Chrome stores its resources. This way content and lower modules like WebKit can still know about grit, but the embedder is responsible for knowing how to fetch a resource given its id.
BUG=76697,85757
Review URL: http://codereview.chromium.org/7249016
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@90337 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/DEPS')
-rw-r--r-- | content/DEPS | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/content/DEPS b/content/DEPS index 6b09f62..6049916 100644 --- a/content/DEPS +++ b/content/DEPS @@ -38,7 +38,13 @@ include_rules = [ # Allow inclusion of WebKit API files. "+third_party/WebKit/Source/WebKit/chromium", - "+ui", + "+ui/base", + "+ui/gfx", + # Content knows about grd files, but the specifics of how to get a resource + # given its id is left to the embedder. + "-ui/base/l10n", + "-ui/base/resource", + "+views", "+webkit", ] |