| OLD | NEW |
| 1 include_rules = [ | 1 include_rules = [ |
| 2 "+ash/public/interfaces", | 2 "+ash/public/interfaces", |
| 3 # TODO(ananta): Remove this when we move files which display UI in |
| 4 # chrome/browser/ui/ash to chrome/browser/ui/views/ash |
| 5 # crbug.com/728877 |
| 6 "+chrome/browser/ui/views/harmony/chrome_layout_provider.h", |
| 3 "+components/arc", | 7 "+components/arc", |
| 4 "+components/drive", | 8 "+components/drive", |
| 5 "+components/session_manager/core", | 9 "+components/session_manager/core", |
| 6 "+components/user_manager", | 10 "+components/user_manager", |
| 7 "+mash/shelf/public/interfaces", | 11 "+mash/shelf/public/interfaces", |
| 8 "+media", | 12 "+media", |
| 9 ] | 13 ] |
| 10 specific_include_rules = { | 14 specific_include_rules = { |
| 11 # Allow ash::SessionStateDelegate for SessionStateDelegateChromeOS. | 15 # Allow ash::SessionStateDelegate for SessionStateDelegateChromeOS. |
| 12 # SessionStateDelegate is deprecated. Chrome code should not use it anymore. | 16 # SessionStateDelegate is deprecated. Chrome code should not use it anymore. |
| 13 # Instead, SessionManager/UserManager/SessionControllerClient should be used. | 17 # Instead, SessionManager/UserManager/SessionControllerClient should be used. |
| 14 # This is temporary rule before SessionStateDelegate(ChromeOS) can be fully | 18 # This is temporary rule before SessionStateDelegate(ChromeOS) can be fully |
| 15 # removed. | 19 # removed. |
| 16 "session_state_delegate_chromeos\.(cc|h)": [ | 20 "session_state_delegate_chromeos\.(cc|h)": [ |
| 17 "+ash/session", | 21 "+ash/session", |
| 18 ] | 22 ] |
| 19 } | 23 } |
| OLD | NEW |