| OLD | NEW |
| 1 include_rules = [ | 1 include_rules = [ |
| 2 # Sign-in logic is being componentized (moved to //components, where | 2 # Sign-in logic is being componentized (moved to //components, where |
| 3 # it won't depend back on //chrome), so we have restrictive DEPS and | 3 # it won't depend back on //chrome), so we have restrictive DEPS and |
| 4 # are trying to get the list of temporarily-allowed (!-prefixed | 4 # are trying to get the list of temporarily-allowed (!-prefixed |
| 5 # rules) below to zero. | 5 # rules) below to zero. |
| 6 "-chrome/common", | 6 "-chrome/common", |
| 7 "-chrome/browser", | 7 "-chrome/browser", |
| 8 "+chrome/browser/signin", | 8 "+chrome/browser/signin", |
| 9 | 9 |
| 10 # TODO(joi): Get this list to zero. | 10 # TODO(joi): Get this list to zero. |
| (...skipping 15 matching lines...) Expand all Loading... |
| 26 "!chrome/browser/ui/browser_commands.h", | 26 "!chrome/browser/ui/browser_commands.h", |
| 27 "!chrome/browser/ui/chrome_pages.h", | 27 "!chrome/browser/ui/chrome_pages.h", |
| 28 "!chrome/browser/ui/global_error/global_error.h", | 28 "!chrome/browser/ui/global_error/global_error.h", |
| 29 "!chrome/browser/ui/global_error/global_error_service.h", | 29 "!chrome/browser/ui/global_error/global_error_service.h", |
| 30 "!chrome/browser/ui/global_error/global_error_service_factory.h", | 30 "!chrome/browser/ui/global_error/global_error_service_factory.h", |
| 31 "!chrome/browser/ui/host_desktop.h", | 31 "!chrome/browser/ui/host_desktop.h", |
| 32 "!chrome/browser/ui/webui/signin/login_ui_service.h", | 32 "!chrome/browser/ui/webui/signin/login_ui_service.h", |
| 33 "!chrome/browser/ui/webui/signin/login_ui_service_factory.h", | 33 "!chrome/browser/ui/webui/signin/login_ui_service_factory.h", |
| 34 "!chrome/browser/ui/webui/signin/profile_signin_confirmation_dialog.h", | 34 "!chrome/browser/ui/webui/signin/profile_signin_confirmation_dialog.h", |
| 35 "!chrome/browser/ui/webui/signin_internals_ui.h", | 35 "!chrome/browser/ui/webui/signin_internals_ui.h", |
| 36 "!chrome/browser/webdata/web_data_service.h", | 36 "!chrome/browser/webdata/token_web_data.h", |
| 37 "!chrome/browser/webdata/web_data_service_factory.h", | 37 "!chrome/browser/webdata/web_data_service_factory.h", |
| 38 "!chrome/common/chrome_notification_types.h", | 38 "!chrome/common/chrome_notification_types.h", |
| 39 "!chrome/common/chrome_switches.h", | 39 "!chrome/common/chrome_switches.h", |
| 40 "!chrome/common/chrome_version_info.h", | 40 "!chrome/common/chrome_version_info.h", |
| 41 "!chrome/common/extensions/extension_messages.h", | 41 "!chrome/common/extensions/extension_messages.h", |
| 42 "!chrome/common/pref_names.h", | 42 "!chrome/common/pref_names.h", |
| 43 "!chrome/common/url_constants.h", | 43 "!chrome/common/url_constants.h", |
| 44 ] | 44 ] |
| 45 | 45 |
| 46 specific_include_rules = { | 46 specific_include_rules = { |
| (...skipping 10 matching lines...) Expand all Loading... |
| 57 | 57 |
| 58 # These files are staying in //chrome so no need to limit. | 58 # These files are staying in //chrome so no need to limit. |
| 59 r"(chrome_signin_manager_delegate|" | 59 r"(chrome_signin_manager_delegate|" |
| 60 r"signin_names_io_thread.*|" | 60 r"signin_names_io_thread.*|" |
| 61 r"signin_manager_factory)" | 61 r"signin_manager_factory)" |
| 62 r"\.(h|cc)": [ | 62 r"\.(h|cc)": [ |
| 63 "+chrome/browser", | 63 "+chrome/browser", |
| 64 "+chrome/common", | 64 "+chrome/common", |
| 65 ], | 65 ], |
| 66 } | 66 } |
| OLD | NEW |