OLD | NEW |
(Empty) | |
| 1 include_rules = [ |
| 2 # History is being made into a Browser Component, so we have these |
| 3 # three basic rules followed by temporary exceptions. Please don't |
| 4 # add to the list of exceptions! |
| 5 "-chrome/browser", |
| 6 "+chrome/browser/api", |
| 7 "+chrome/browser/history", |
| 8 |
| 9 # TODO(erikwright): Bring this list to zero. |
| 10 # |
| 11 # Do not add to the list of temporarily-allowed dependencies below, |
| 12 # and please do not introduce more #includes of these files. |
| 13 "!chrome/browser/autocomplete/autocomplete_field_trial.h", |
| 14 "!chrome/browser/autocomplete/autocomplete_log.h", |
| 15 "!chrome/browser/autocomplete/autocomplete_match.h", |
| 16 "!chrome/browser/autocomplete/autocomplete_provider.h", |
| 17 "!chrome/browser/autocomplete/autocomplete_result.h", |
| 18 "!chrome/browser/autocomplete/history_provider_util.h", |
| 19 "!chrome/browser/autocomplete/history_url_provider.h", |
| 20 "!chrome/browser/autocomplete/url_prefix.h", |
| 21 "!chrome/browser/bookmarks/bookmark_codec.h", |
| 22 "!chrome/browser/bookmarks/bookmark_model.h", |
| 23 "!chrome/browser/bookmarks/bookmark_model_factory.h", |
| 24 "!chrome/browser/bookmarks/bookmark_service.h", |
| 25 "!chrome/browser/browser_process.h", |
| 26 "!chrome/browser/cancelable_request.h", |
| 27 "!chrome/browser/chromeos/login/existing_user_controller.h", |
| 28 "!chrome/browser/diagnostics/sqlite_diagnostics.h", |
| 29 "!chrome/browser/extensions/event_router.h", |
| 30 "!chrome/browser/extensions/extension_function.h", |
| 31 "!chrome/browser/favicon/favicon_service.h", |
| 32 "!chrome/browser/prefs/pref_service.h", |
| 33 "!chrome/browser/prefs/scoped_user_pref_update.h", |
| 34 "!chrome/browser/profiles/profile.h", |
| 35 "!chrome/browser/profiles/profile_dependency_manager.h", |
| 36 "!chrome/browser/profiles/profile_manager.h", |
| 37 "!chrome/browser/profiles/refcounted_profile_keyed_service.h", |
| 38 "!chrome/browser/profiles/refcounted_profile_keyed_service_factory.h", |
| 39 "!chrome/browser/search_engines/template_url_id.h", |
| 40 "!chrome/browser/ui/profile_error_dialog.h", |
| 41 "!chrome/browser/ui/webui/ntp/most_visited_handler.h", |
| 42 "!chrome/browser/ui/webui/ntp/new_tab_ui.h", |
| 43 "!chrome/browser/visitedlink/visitedlink_master.h", |
| 44 ] |
| 45 |
| 46 specific_include_rules = { |
| 47 # TODO(erikwright): Bring this list to zero. |
| 48 # |
| 49 # Do not add to the list of temporarily-allowed dependencies below, |
| 50 # and please do not introduce more #includes of these files. |
| 51 '.*_[a-z]*test\.cc': [ |
| 52 "!chrome/browser/bookmarks/bookmark_utils.h", |
| 53 "!chrome/browser/extensions/extension_apitest.h", |
| 54 "!chrome/browser/extensions/extension_function_test_utils.h", |
| 55 "!chrome/browser/ui/browser.h", |
| 56 "!chrome/browser/ui/browser_tabstrip.h", |
| 57 "!chrome/browser/ui/view_ids.h", |
| 58 ] |
| 59 } |
OLD | NEW |