diff options
author | yoz@chromium.org <yoz@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-07-24 03:39:36 +0000 |
---|---|---|
committer | yoz@chromium.org <yoz@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-07-24 03:39:36 +0000 |
commit | 7685f64a35b6d029f7d11ce752dc126163d9474e (patch) | |
tree | 0cb10d4ed10d781bc6de27672bbcc8528134baab /extensions/shell/DEPS | |
parent | af97fe7d55c6310aacf1585bdbd8d38e3bc4c080 (diff) | |
download | chromium_src-7685f64a35b6d029f7d11ce752dc126163d9474e.zip chromium_src-7685f64a35b6d029f7d11ce752dc126163d9474e.tar.gz chromium_src-7685f64a35b6d029f7d11ce752dc126163d9474e.tar.bz2 |
Move apps/shell to extensions/shell.
This does:
- Move files
- Fix up all namespaces in these files to be extensions, not apps
- Clean up DEPS files
This does not:
- Change the name of the build targets (app_shell, app_shell_browsertests)
BUG=394987
TBR=ben@chromium.org
Review URL: https://codereview.chromium.org/412713002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@285144 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'extensions/shell/DEPS')
-rw-r--r-- | extensions/shell/DEPS | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/extensions/shell/DEPS b/extensions/shell/DEPS new file mode 100644 index 0000000..ffa7287 --- /dev/null +++ b/extensions/shell/DEPS @@ -0,0 +1,23 @@ +include_rules = [ + # The apps module has dependencies on chrome. + "-apps", + # Individual subdirectories should have their own DEPS that include + # their allowed directories. + "-extensions/shell", + "+extensions/shell/common", + "+extensions/shell/test", + + # Do not add dependencies on Chrome. Talk to OWNERS about how to refactor + # the code you need to a shared location. + "-chrome", + + # Only allow app_shell and extensions resources, not general Chrome ones. + "-grit", + "+grit/app_shell_resources.h", + "+grit/extensions_resources.h", + + # Real DEPS go in subdirectories, for example extensions/shell/browser/DEPS. + # Temporary exceptions for app_shell bring-up go here. + # TODO(jamescook): Remove these. http://crbug.com/305404 + "!chrome/browser/chrome_notification_types.h", +] |