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

Side by Side Diff: components/autofill/core/browser/DEPS

Issue 65953002: [Autofill] Rename autofill_common_test -> autofill_test_utils (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 1 month 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 include_rules = [ 1 include_rules = [
2 "+components/webdata/common", 2 "+components/webdata/common",
3 "+crypto/random.h", 3 "+crypto/random.h",
4 "+google_apis/gaia", 4 "+google_apis/gaia",
5 "+google_apis/google_api_keys.h", 5 "+google_apis/google_api_keys.h",
6 "+net", 6 "+net",
7 "+sql", 7 "+sql",
8 "+third_party/libjingle", 8 "+third_party/libjingle",
9 "+third_party/libphonenumber", # For phone number i18n. 9 "+third_party/libphonenumber", # For phone number i18n.
10 10
11 # TODO(blundell): Bring this list to zero. 11 # TODO(blundell): Bring this list to zero.
12 # 12 #
13 # Do not add to the list of temporarily-allowed dependencies below, 13 # Do not add to the list of temporarily-allowed dependencies below,
14 # and please do not introduce more #includes of these files. 14 # and please do not introduce more #includes of these files.
15 "!content/public/browser/browser_context.h", 15 "!content/public/browser/browser_context.h",
16 "!content/public/browser/render_view_host.h", 16 "!content/public/browser/render_view_host.h",
17 "!content/public/browser/web_contents.h", 17 "!content/public/browser/web_contents.h",
18 "!third_party/WebKit/public/web/WebAutofillClient.h", 18 "!third_party/WebKit/public/web/WebAutofillClient.h",
19 ] 19 ]
20 20
21 specific_include_rules = { 21 specific_include_rules = {
22 'test_autofill_driver.*': [ 22 'test_autofill_driver.*': [
23 # TODO(blundell): Eliminate the need for TestAutofillDriver to be a 23 # TODO(blundell): Eliminate the need for TestAutofillDriver to be a
24 # WebContentsObserver. 24 # WebContentsObserver.
25 "!content/public/browser/web_contents_observer.h", 25 "!content/public/browser/web_contents_observer.h",
26 ], 26 ],
27 'autofill_test_utils\.cc': [
28 # TODO(blundell): Bring this list to zero.
29 #
30 # Do not add to the list of temporarily-allowed dependencies below,
31 # and please do not introduce more #includes of these files.
32 "!components/user_prefs/user_prefs.h",
33 ],
27 '.*_[a-z]*test\.cc': [ 34 '.*_[a-z]*test\.cc': [
28 # TODO(blundell): Bring this list to zero. 35 # TODO(blundell): Bring this list to zero.
29 # 36 #
30 # Do not add to the list of temporarily-allowed dependencies below, 37 # Do not add to the list of temporarily-allowed dependencies below,
31 # and please do not introduce more #includes of these files. 38 # and please do not introduce more #includes of these files.
32 "!components/user_prefs/user_prefs.h", 39 "!components/user_prefs/user_prefs.h",
33 "!content/public/browser/browser_thread.h", 40 "!content/public/browser/browser_thread.h",
34 "!content/public/test", 41 "!content/public/test",
35 42
36 # TODO(joi): Bring this list to zero. 43 # TODO(joi): Bring this list to zero.
37 # 44 #
38 # Do not add to the list of temporarily-allowed dependencies below, 45 # Do not add to the list of temporarily-allowed dependencies below,
39 # and please do not introduce more #includes of these files. 46 # and please do not introduce more #includes of these files.
40 "!chrome/browser/autofill/autofill_cc_infobar_delegate.h", 47 "!chrome/browser/autofill/autofill_cc_infobar_delegate.h",
41 "!chrome/browser/autofill/personal_data_manager_factory.h", 48 "!chrome/browser/autofill/personal_data_manager_factory.h",
42 "!chrome/browser/password_manager/password_manager.h", 49 "!chrome/browser/password_manager/password_manager.h",
43 "!chrome/browser/password_manager/password_manager_delegate_impl.h", 50 "!chrome/browser/password_manager/password_manager_delegate_impl.h",
44 "!chrome/browser/profiles/profile.h", 51 "!chrome/browser/profiles/profile.h",
45 "!chrome/browser/sync/profile_sync_service.h", 52 "!chrome/browser/sync/profile_sync_service.h",
46 "!chrome/browser/sync/profile_sync_service_factory.h", 53 "!chrome/browser/sync/profile_sync_service_factory.h",
47 "!chrome/browser/ui/autofill/tab_autofill_manager_delegate.h", 54 "!chrome/browser/ui/autofill/tab_autofill_manager_delegate.h",
48 "!chrome/browser/webdata/web_data_service_factory.h", 55 "!chrome/browser/webdata/web_data_service_factory.h",
49 "!chrome/common/chrome_paths.h", 56 "!chrome/common/chrome_paths.h",
50 "!chrome/test/base/chrome_render_view_host_test_harness.h", 57 "!chrome/test/base/chrome_render_view_host_test_harness.h",
51 "!chrome/test/base/testing_profile.h", 58 "!chrome/test/base/testing_profile.h",
52 "!third_party/WebKit/public/web/WebInputElement.h", 59 "!third_party/WebKit/public/web/WebInputElement.h",
53 ], 60 ],
54 } 61 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698