OLD | NEW |
1 include_rules = [ | 1 include_rules = [ |
2 # History is being made into a Browser Component, so we have these | 2 # History is being made into a Browser Component, so we have these |
3 # basic rules followed by temporary exceptions. Please don't | 3 # basic rules followed by temporary exceptions. Please don't |
4 # add to the list of exceptions! | 4 # add to the list of exceptions! |
5 "-chrome/browser", | 5 "-chrome/browser", |
6 "-components/search_engines", | 6 "-components/search_engines", |
7 "+chrome/browser/chrome_notification_types.h", | 7 "+chrome/browser/chrome_notification_types.h", |
8 "+chrome/browser/common", | 8 "+chrome/browser/common", |
9 "+chrome/browser/favicon", | 9 "+chrome/browser/favicon", |
10 "+chrome/browser/history", | 10 "+chrome/browser/history", |
(...skipping 27 matching lines...) Expand all Loading... |
38 "!chrome/browser/signin/signin_manager.h", | 38 "!chrome/browser/signin/signin_manager.h", |
39 "!chrome/browser/signin/signin_manager_factory.h", | 39 "!chrome/browser/signin/signin_manager_factory.h", |
40 "!chrome/browser/signin/token_service_factory.h", | 40 "!chrome/browser/signin/token_service_factory.h", |
41 "!chrome/browser/sync/profile_sync_service.h", | 41 "!chrome/browser/sync/profile_sync_service.h", |
42 "!chrome/browser/sync/profile_sync_service_factory.h", | 42 "!chrome/browser/sync/profile_sync_service_factory.h", |
43 "!chrome/browser/ui/browser.h", | 43 "!chrome/browser/ui/browser.h", |
44 "!chrome/browser/ui/browser_finder.h", | 44 "!chrome/browser/ui/browser_finder.h", |
45 "!chrome/browser/ui/profile_error_dialog.h", | 45 "!chrome/browser/ui/profile_error_dialog.h", |
46 "!chrome/browser/ui/webui/ntp/most_visited_handler.h", | 46 "!chrome/browser/ui/webui/ntp/most_visited_handler.h", |
47 "!chrome/browser/ui/webui/ntp/new_tab_ui.h", | 47 "!chrome/browser/ui/webui/ntp/new_tab_ui.h", |
48 "!components/autocomplete/autocomplete_match.h", | |
49 "!components/autocomplete/url_prefix.h", | |
50 "!components/bookmarks/browser/bookmark_model.h", | 48 "!components/bookmarks/browser/bookmark_model.h", |
51 "!components/bookmarks/browser/bookmark_utils.h", | 49 "!components/bookmarks/browser/bookmark_utils.h", |
| 50 "!components/omnibox/autocomplete_match.h", |
| 51 "!components/omnibox/url_prefix.h", |
52 ] | 52 ] |
53 | 53 |
54 specific_include_rules = { | 54 specific_include_rules = { |
55 # Browser tests, by definition, need access to the browser objects. | 55 # Browser tests, by definition, need access to the browser objects. |
56 '.*_(api|browser|)test\.cc': [ | 56 '.*_(api|browser|)test\.cc': [ |
57 "+chrome/browser", | 57 "+chrome/browser", |
58 ], | 58 ], |
59 # TODO(sdefresne): Bring this list to zero. http://crbug.com/370850 | 59 # TODO(sdefresne): Bring this list to zero. http://crbug.com/370850 |
60 # | 60 # |
61 # Do not add to the list of temporarily-allowed dependencies below, | 61 # Do not add to the list of temporarily-allowed dependencies below, |
62 # and please do not introduce more #includes of these files. | 62 # and please do not introduce more #includes of these files. |
63 '.*_[a-z]*test\.cc': [ | 63 '.*_[a-z]*test\.cc': [ |
64 "!components/bookmarks/test/bookmark_test_helpers.h", | 64 "!components/bookmarks/test/bookmark_test_helpers.h", |
65 "!components/bookmarks/test/test_bookmark_client.h", | 65 "!components/bookmarks/test/test_bookmark_client.h", |
66 ] | 66 ] |
67 } | 67 } |
OLD | NEW |