diff options
author | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-05-29 02:41:25 +0000 |
---|---|---|
committer | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-05-29 02:41:25 +0000 |
commit | 309647968c1a5866dec06d3d383c298445be6093 (patch) | |
tree | 5a23015def6185fbc2f272297d14da0d7f4850c7 | |
parent | 7f1c011d36b359ad598267b44e857b63b00d1f97 (diff) | |
download | chromium_src-309647968c1a5866dec06d3d383c298445be6093.zip chromium_src-309647968c1a5866dec06d3d383c298445be6093.tar.gz chromium_src-309647968c1a5866dec06d3d383c298445be6093.tar.bz2 |
Relanding "chrome/browser: Remove unnecessary entries from DEPS files."
After recent refactorings chrome/browser/api and a few
chrome/browser/profiles/
includes are not necessary anymore. c/b/api was removed in r195919 by Peter
and
some c/b/profiles/ were moved in r201167 by Pawel.
BUG=138280,144783, 140037, 144050, 146851, 233552
TEST=checkdeps.py passes.
TBR=joi@chromium.org, thestig@chromium.org
Review URL: https://codereview.chromium.org/16182002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@202752 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r-- | WATCHLISTS | 6 | ||||
-rw-r--r-- | chrome/browser/common/DEPS | 3 | ||||
-rw-r--r-- | chrome/browser/common/README | 3 | ||||
-rw-r--r-- | chrome/browser/favicon/DEPS | 1 | ||||
-rw-r--r-- | chrome/browser/history/DEPS | 1 | ||||
-rw-r--r-- | components/autofill/browser/DEPS | 2 |
6 files changed, 5 insertions, 11 deletions
@@ -47,8 +47,7 @@ 'ash/', }, 'autofill': { - 'filepath': 'chrome/browser/api/webdata/|'\ - 'chrome/browser/autofill/|'\ + 'filepath': 'chrome/browser/autofill/|'\ 'chrome/browser/resources/options/autofill_|'\ 'chrome/browser/sync/glue/autofill_|'\ 'chrome/browser/ui/android/autofill/|'\ @@ -57,10 +56,11 @@ 'chrome/browser/ui/gtk/autofill/|'\ 'chrome/browser/ui/views/autofill/|'\ 'chrome/browser/ui/webui/options/autofill_|'\ - 'chrome/browser/webdata/|'\ 'chrome/renderer/autofill/|'\ 'chrome/test/data/autofill/|'\ 'components/autofill/|'\ + 'components/autofill/browser/webdata/|'\ + 'components/webdata/|'\ 'content/public/common/password_|'\ 'content/public/renderer/password_|'\ 'content/renderer/password_', diff --git a/chrome/browser/common/DEPS b/chrome/browser/common/DEPS index 12813f4..ad13bb6 100644 --- a/chrome/browser/common/DEPS +++ b/chrome/browser/common/DEPS @@ -1,7 +1,6 @@ include_rules = [ # Common is for library/utility code shared by multiple parts of chrome - # browser. So it should not depend on other parts of the browser except API. + # browser. It should not depend on other parts of the browser. "-chrome/browser", - "+chrome/browser/api", "+chrome/browser/common", ] diff --git a/chrome/browser/common/README b/chrome/browser/common/README index 4c92f7a..232b5e8 100644 --- a/chrome/browser/common/README +++ b/chrome/browser/common/README @@ -1,3 +1,2 @@ This directory contains library/utility code shared by multiple Browser -Components. It should not depend on other parts of the browser except through -api(chrome/browser/api). +Components. It should not depend on other parts of the browser. diff --git a/chrome/browser/favicon/DEPS b/chrome/browser/favicon/DEPS index 8678927..2ed7139 100644 --- a/chrome/browser/favicon/DEPS +++ b/chrome/browser/favicon/DEPS @@ -3,7 +3,6 @@ # three basic rules followed by temporary exceptions. Please don't # add to the list of exceptions! "-chrome/browser", - "+chrome/browser/api", "+chrome/browser/common", "+chrome/browser/favicon", diff --git a/chrome/browser/history/DEPS b/chrome/browser/history/DEPS index ab22b2d..da0759f 100644 --- a/chrome/browser/history/DEPS +++ b/chrome/browser/history/DEPS @@ -3,7 +3,6 @@ include_rules = [ # basic rules followed by temporary exceptions. Please don't # add to the list of exceptions! "-chrome/browser", - "+chrome/browser/api", "+chrome/browser/common", "+chrome/browser/favicon", "+chrome/browser/history", diff --git a/components/autofill/browser/DEPS b/components/autofill/browser/DEPS index ad3aace..74e13c4 100644 --- a/components/autofill/browser/DEPS +++ b/components/autofill/browser/DEPS @@ -31,8 +31,6 @@ specific_include_rules = { # # Do not add to the list of temporarily-allowed dependencies below, # and please do not introduce more #includes of these files. - "!chrome/browser/api/infobars/confirm_infobar_delegate.h", - "!chrome/browser/api/infobars/infobar_service.h", "!chrome/browser/autofill/autofill_cc_infobar_delegate.h", "!chrome/browser/autofill/personal_data_manager_factory.h", "!chrome/browser/password_manager/encryptor.h", |