| 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 30 matching lines...) Expand all Loading... |
| 41 ] | 41 ] |
| 42 | 42 |
| 43 specific_include_rules = { | 43 specific_include_rules = { |
| 44 r".*_[a-z]*test\.cc": [ | 44 r".*_[a-z]*test\.cc": [ |
| 45 # TODO(joi): Get this list to zero. | 45 # TODO(joi): Get this list to zero. |
| 46 "!chrome/browser/browser_process.h", | 46 "!chrome/browser/browser_process.h", |
| 47 "!chrome/browser/prefs/browser_prefs.h", | 47 "!chrome/browser/prefs/browser_prefs.h", |
| 48 "!chrome/browser/sync/profile_sync_service_mock.h", | 48 "!chrome/browser/sync/profile_sync_service_mock.h", |
| 49 "!chrome/browser/ui/browser.h", | 49 "!chrome/browser/ui/browser.h", |
| 50 "!chrome/browser/ui/singleton_tabs.h", | 50 "!chrome/browser/ui/singleton_tabs.h", |
| 51 "!chrome/browser/ui/sync/sync_promo_ui.h", |
| 51 "!chrome/browser/ui/tabs/tab_strip_model.h", | 52 "!chrome/browser/ui/tabs/tab_strip_model.h", |
| 52 "!chrome/browser/ui/webui/sync_promo/sync_promo_ui.h", | |
| 53 ], | 53 ], |
| 54 | 54 |
| 55 # These files are staying in //chrome so no need to limit. | 55 # These files are staying in //chrome so no need to limit. |
| 56 r"(chrome_signin_manager_delegate|" | 56 r"(chrome_signin_manager_delegate|" |
| 57 r"signin_names_io_thread.*|" | 57 r"signin_names_io_thread.*|" |
| 58 r"signin_manager_factory)" | 58 r"signin_manager_factory)" |
| 59 r"\.(h|cc)": [ | 59 r"\.(h|cc)": [ |
| 60 "+chrome/browser", | 60 "+chrome/browser", |
| 61 "+chrome/common", | 61 "+chrome/common", |
| 62 ], | 62 ], |
| 63 } | 63 } |
| OLD | NEW |