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 # Individual subdirectories should have their own DEPS that include | 5 # Individual subdirectories should have their own DEPS that include |
5 # their allowed directories. | 6 # their allowed directories. |
6 "-extensions/shell", | 7 "-extensions/shell", |
7 "+extensions/shell/common", | 8 "+extensions/shell/common", |
8 "+extensions/shell/test", | 9 "+extensions/shell/test", |
9 | 10 |
10 # 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 |
11 # the code you need to a shared location. | 12 # the code you need to a shared location. |
12 "-chrome", | 13 "-chrome", |
13 | 14 |
14 # Only allow app_shell and extensions resources, not general Chrome ones. | 15 # Only allow app_shell and extensions resources, not general Chrome ones. |
15 "-grit", | 16 "-grit", |
16 "+grit/app_shell_resources.h", | 17 "+grit/app_shell_resources.h", |
17 "+grit/extensions_resources.h", | 18 "+grit/extensions_resources.h", |
18 | 19 |
19 # Real DEPS go in subdirectories, for example extensions/shell/browser/DEPS. | 20 # Real DEPS go in subdirectories, for example extensions/shell/browser/DEPS. |
20 # Temporary exceptions for app_shell bring-up go here. | |
21 # TODO(jamescook): Remove these. http://crbug.com/305404 | |
22 "!chrome/browser/chrome_notification_types.h", | |
23 ] | 21 ] |
OLD | NEW |