Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(35)

Unified Diff: chrome/browser/autofill/DEPS

Issue 12434004: Move remaining Autofill code to //components/autofill. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix long lines Created 7 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/android/tab_android.cc ('k') | chrome/browser/autofill/address.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/autofill/DEPS
diff --git a/chrome/browser/autofill/DEPS b/chrome/browser/autofill/DEPS
deleted file mode 100644
index edf414a2f2a7d604fbafa8a3714444ab72440481..0000000000000000000000000000000000000000
--- a/chrome/browser/autofill/DEPS
+++ /dev/null
@@ -1,84 +0,0 @@
-include_rules = [
- # Autofill is being made into a component (it will end up at
- # //components/autofill and not depend on //chrome), so we have
- # these basic rules followed by temporary exceptions. Please don't
- # add to the list of exceptions!
- "-chrome/browser",
- "-chrome/common",
- "+chrome/browser/autofill",
-
- # TODO(joi): This is "ok" temporarily (it's just a header file with
- # a large enum, and doesn't bring in any other dependencies on
- # //chrome). The plan of record to get rid of this is to change
- # Autofill and WebData to not use NotificationService, and instead
- # use typed callback interfaces or allow registering base::Callback
- # callbacks for each event.
- "!chrome/common/chrome_notification_types.h",
-
- # Permanently-allowed DEPS beyond the standard Browser
- # Components-like DEPS above go here.
- "+third_party/libphonenumber", # For phone number i18n.
-
- # TODO(joi, kaiwang): Bring this list to zero.
- "!chrome/browser/api/infobars",
- "!chrome/browser/api/webdata",
-
- # TODO(akalin): Remove this dependency.
- "!sync/util/data_encryption_win.h",
-]
-
-specific_include_rules = {
- # TODO(joi, kaiwang): Bring this list to zero.
- #
- # Do not add to the list of temporarily-allowed dependencies below,
- # and please do not introduce more #includes of these files.
- '.*_[a-z]*test\.cc': [
- "!chrome/browser/api/infobars/confirm_infobar_delegate.h",
- "!chrome/browser/api/infobars/infobar_service.h",
- "!chrome/browser/password_manager/encryptor.h",
- "!chrome/browser/password_manager/password_manager.h",
- "!chrome/browser/password_manager/password_manager_delegate_impl.h",
- "!chrome/browser/profiles/profile.h",
- "!chrome/browser/sync/profile_sync_service.h",
- "!chrome/browser/sync/profile_sync_service_factory.h",
- "!chrome/browser/translate/translate_infobar_delegate.h",
- "!chrome/browser/translate/translate_manager.h",
- "!chrome/browser/webdata/autofill_web_data_service_impl.h",
- "!chrome/browser/webdata/web_data_service.h",
- "!chrome/browser/webdata/web_data_service_factory.h",
- "!chrome/browser/ui/autofill/tab_autofill_manager_delegate.h",
- "!chrome/browser/ui/browser.h",
- "!chrome/browser/ui/browser_tabstrip.h",
- "!chrome/browser/ui/browser_window.h",
- "!chrome/browser/ui/tabs/tab_strip_model.h",
- "!chrome/common/chrome_constants.h",
- "!chrome/common/chrome_paths.h",
- "!chrome/common/pref_names.h",
- "!chrome/common/render_messages.h",
- "!chrome/common/url_constants.h",
- ],
-
- # TODO(joi): These files will stay in chrome/browser/autofill when
- # the rest move to components/autofill. Fix DEPS once that happens.
- 'personal_data_manager_factory\.(h|cc)': [
- "+chrome/browser/api/sync",
- "+chrome/browser/profiles/profile_dependency_manager.h",
- "+chrome/browser/profiles/profile_keyed_service.h",
- "+chrome/browser/profiles/profile_keyed_service_factory.h",
- "+chrome/browser/profiles/profile.h",
- "+chrome/browser/webdata/web_data_service_factory.h",
- ],
-
- 'autofill_cc_infobar_delegate\.(h|cc)': [
- "!chrome/browser/api/infobars/confirm_infobar_delegate.h",
- "!chrome/browser/api/infobars/infobar_service.h",
- ],
-
- # Android uses Chrome's personal data manager (i.e. the
- # PersonalDataManagerService) and doesn't need to restrict itself to the
- # autofill component.
- 'personal_data_manager_android\.cc': [
- "!chrome/browser/browser_process.h",
- "!chrome/browser/profiles/profile_manager.h",
- ],
-}
« no previous file with comments | « chrome/browser/android/tab_android.cc ('k') | chrome/browser/autofill/address.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698