| OLD | NEW |
| 1 include_rules = [ | 1 include_rules = [ |
| 2 # The apps module has dependencies on chrome. |
| 3 "-apps", |
| 4 |
| 2 # Individual subdirectories should have their own DEPS that include | 5 # Individual subdirectories should have their own DEPS that include |
| 3 # their allowed directories. | 6 # their allowed directories. |
| 4 "-extensions/shell", | 7 "-extensions/shell", |
| 5 "+extensions/shell/common", | 8 "+extensions/shell/common", |
| 6 "+extensions/shell/test", | 9 "+extensions/shell/test", |
| 7 | 10 |
| 8 # Do not add dependencies on Chrome. Talk to OWNERS about how to refactor | 11 # Do not add dependencies on Chrome. Talk to OWNERS about how to refactor |
| 9 # the code you need to a shared location. | 12 # the code you need to a shared location. |
| 10 "-chrome", | 13 "-chrome", |
| 11 | 14 |
| 12 # The system.storage API expects the StorageMonitor to be initialized by | 15 # The system.storage API expects the StorageMonitor to be initialized by |
| 13 # the embedder before being used by the extension. | 16 # the embedder before being used by the extension. |
| 14 "+components/storage_monitor", | 17 "+components/storage_monitor", |
| 15 | 18 |
| 16 # Real DEPS go in subdirectories, for example extensions/shell/browser/DEPS. | 19 # Real DEPS go in subdirectories, for example extensions/shell/browser/DEPS. |
| 17 ] | 20 ] |
| OLD | NEW |