diff options
author | stuartmorgan@chromium.org <stuartmorgan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-09-10 10:01:07 +0000 |
---|---|---|
committer | stuartmorgan@chromium.org <stuartmorgan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-09-10 10:01:07 +0000 |
commit | f87d7cb4ec8002c3df07e74dc9b31afcf4ad8b7d (patch) | |
tree | 51d2b71b54eff946dbceec119d47d23358960f82 /chrome/common/DEPS | |
parent | 5e194bc61b0c8a3072fb4a0d73106717ceba667e (diff) | |
download | chromium_src-f87d7cb4ec8002c3df07e74dc9b31afcf4ad8b7d.zip chromium_src-f87d7cb4ec8002c3df07e74dc9b31afcf4ad8b7d.tar.gz chromium_src-f87d7cb4ec8002c3df07e74dc9b31afcf4ad8b7d.tar.bz2 |
Split user agent code out of the 'glue' target
This creates a new user_agent component target for the user agent handling code. This makes it straightforward for iOS to build only the user-agent part of glue. It should also make incremental dismantling of webkit/ easier, since the dependencies on user agent code are now explicit.
The code that was in user_agent.cc/h (the webkit_user_agent target) has been moved to user_agent_util.cc/h, and folded into the user_agent component target. All user-agent related code has been moved to a new webkit/user_agent/ directory.
BUG=None
Review URL: https://chromiumcodereview.appspot.com/10869073
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@155695 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common/DEPS')
-rw-r--r-- | chrome/common/DEPS | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/chrome/common/DEPS b/chrome/common/DEPS index fa87567..7c61927 100644 --- a/chrome/common/DEPS +++ b/chrome/common/DEPS @@ -11,6 +11,7 @@ include_rules = [ "+webkit/forms", # Defines some types that are marshalled over IPC. "+webkit/glue", "+webkit/plugins", + "+webkit/user_agent", # TODO(jam): remove this once all of chrome doesn't depend on content/common. "-content/common", |