| 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 # Individual subdirectories should have their own DEPS that include | 4 # Individual subdirectories should have their own DEPS that include |
| 5 # their allowed directories. | 5 # their allowed directories. |
| 6 "-apps/shell", | 6 "-apps/shell", |
| 7 "+apps/shell/common", | 7 "+apps/shell/common", |
| 8 "+apps/shell/test", | 8 "+apps/shell/test", |
| 9 | 9 |
| 10 "+grit/extensions_resources.h", | 10 "+grit/extensions_resources.h", |
| 11 | 11 |
| 12 # TODO(yoz): Do not depend on Chrome resources. | 12 # TODO(yoz): Do not depend on Chrome resources. |
| 13 "!grit/common_resources.h", | 13 "!grit/common_resources.h", |
| 14 | 14 |
| 15 # Do not add dependencies on Chrome. Talk to OWNERS about how to refactor | 15 # Do not add dependencies on Chrome. Talk to OWNERS about how to refactor |
| 16 # the code you need to a shared location. | 16 # the code you need to a shared location. |
| 17 "-chrome", | 17 "-chrome", |
| 18 | 18 |
| 19 # Only allow app_shell resources, not general Chrome ones. |
| 20 "-grit", |
| 21 "+grit/app_shell_resources.h", |
| 22 |
| 19 # Real DEPS go in subdirectories, for example apps/shell/browser/DEPS. | 23 # Real DEPS go in subdirectories, for example apps/shell/browser/DEPS. |
| 20 # Temporary exceptions for app_shell bring-up go here. | 24 # Temporary exceptions for app_shell bring-up go here. |
| 21 # TODO(jamescook): Remove these. http://crbug.com/305404 | 25 # TODO(jamescook): Remove these. http://crbug.com/305404 |
| 22 "!chrome/browser/chrome_notification_types.h", | 26 "!chrome/browser/chrome_notification_types.h", |
| 23 "!chrome/common/extensions/api/generated_api.h", | 27 "!chrome/common/extensions/api/generated_api.h", |
| 24 "!chrome/common/extensions/api/generated_schemas.h", | 28 "!chrome/common/extensions/api/generated_schemas.h", |
| 25 "!chrome/common/extensions/permissions/chrome_api_permissions.h", | 29 "!chrome/common/extensions/permissions/chrome_api_permissions.h", |
| 26 "!chrome/renderer/extensions/dispatcher.h", | 30 "!chrome/renderer/extensions/dispatcher.h", |
| 27 "!chrome/renderer/extensions/extension_helper.h", | 31 "!chrome/renderer/extensions/extension_helper.h", |
| 32 "!chrome/renderer/resource_bundle_source_map.h", |
| 28 ] | 33 ] |
| OLD | NEW |