OLD | NEW |
1 include_rules = [ | 1 include_rules = [ |
2 # The apps module has dependencies on chrome. | 2 # The apps module has dependencies on chrome. |
3 "-apps", | 3 "-apps", |
4 | 4 |
5 # Individual subdirectories should have their own DEPS that include | 5 # Individual subdirectories should have their own DEPS that include |
6 # their allowed directories. | 6 # their allowed directories. |
7 "-extensions/shell", | 7 "-extensions/shell", |
8 "+extensions/shell/common", | 8 "+extensions/shell/common", |
9 "+extensions/shell/test", | 9 "+extensions/shell/test", |
10 | 10 |
11 # 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 |
12 # the code you need to a shared location. | 12 # the code you need to a shared location. |
13 "-chrome", | 13 "-chrome", |
14 | 14 |
15 # The system.storage API expects the StorageMonitor to be initialized by | 15 # The system.storage API expects the StorageMonitor to be initialized by |
16 # the embedder before being used by the extension. | 16 # the embedder before being used by the extension. |
17 "+components/storage_monitor", | 17 "+components/storage_monitor", |
18 | 18 |
19 # Only allow app_shell and extensions resources, not general Chrome ones. | 19 # Only allow extensions resources, not general Chrome ones. |
20 "-grit", | 20 "-grit", |
21 "+grit/app_shell_resources.h", | |
22 "+grit/extensions_resources.h", | 21 "+grit/extensions_resources.h", |
23 | 22 |
24 # Real DEPS go in subdirectories, for example extensions/shell/browser/DEPS. | 23 # Real DEPS go in subdirectories, for example extensions/shell/browser/DEPS. |
25 ] | 24 ] |
OLD | NEW |