summaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorbenwells@chromium.org <benwells@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-08-01 12:50:21 +0000
committerbenwells@chromium.org <benwells@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-08-01 12:50:21 +0000
commit49a008fee59e6f03c761e5a7f62de376cf9750b9 (patch)
tree11f0e05b15432eac82bba08dad9d483a653f22c9 /apps
parent82c326026551815db8f8577fefc0f394a429116b (diff)
downloadchromium_src-49a008fee59e6f03c761e5a7f62de376cf9750b9.zip
chromium_src-49a008fee59e6f03c761e5a7f62de376cf9750b9.tar.gz
chromium_src-49a008fee59e6f03c761e5a7f62de376cf9750b9.tar.bz2
Clean up apps deps.
Much stuff isn't needed or is only needed by subcomponents which will either move or be deleted. BUG=159366 TBR=thakis for apps DEPS refactor. No new dependency has been added, just the scope of the DEPS rule limited. Review URL: https://chromiumcodereview.appspot.com/21472002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@215017 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'apps')
-rw-r--r--apps/DEPS10
-rw-r--r--apps/app_host/DEPS1
-rw-r--r--apps/app_launcher.cc5
-rw-r--r--apps/app_shim/DEPS11
4 files changed, 12 insertions, 15 deletions
diff --git a/apps/DEPS b/apps/DEPS
index 44a0dde..df07d68 100644
--- a/apps/DEPS
+++ b/apps/DEPS
@@ -18,20 +18,10 @@ include_rules = [
"+chrome/browser/lifetime/application_lifetime.h",
"+chrome/browser/profiles",
"+chrome/browser/sessions/session_id.h",
- "+chrome/browser/shell_integration.h",
- "+chrome/browser/ui/extensions/application_launch.h",
"+chrome/browser/ui/extensions/native_app_window.h",
"+chrome/browser/ui/host_desktop.h",
- "+chrome/browser/ui/web_applications/web_app_ui.h",
- "+chrome/browser/web_applications/web_app.h",
- "+chrome/browser/web_applications/web_app_mac.h",
- "+chrome/common/chrome_constants.h",
- "+chrome/common/chrome_paths.h",
"+chrome/common/chrome_switches.h",
"+chrome/common/extensions",
- "+chrome/common/mac/app_mode_common.h",
- "+chrome/installer",
"+chrome/test/base/interactive_test_utils.h",
"+chrome/test/base/testing_profile.h",
- "+grit/generated_resources.h",
]
diff --git a/apps/app_host/DEPS b/apps/app_host/DEPS
index 7251c42..1f66e9a 100644
--- a/apps/app_host/DEPS
+++ b/apps/app_host/DEPS
@@ -1,3 +1,4 @@
include_rules = [
+ "+chrome/installer",
"+google_update",
]
diff --git a/apps/app_launcher.cc b/apps/app_launcher.cc
index 4e1f379..8060d5f 100644
--- a/apps/app_launcher.cc
+++ b/apps/app_launcher.cc
@@ -12,11 +12,6 @@
#include "chrome/browser/browser_process.h"
#include "chrome/browser/ui/host_desktop.h"
-#if defined(OS_WIN)
-#include "chrome/installer/launcher_support/chrome_launcher_support.h"
-#include "chrome/installer/util/browser_distribution.h"
-#endif
-
namespace apps {
bool IsAppLauncherEnabled() {
diff --git a/apps/app_shim/DEPS b/apps/app_shim/DEPS
new file mode 100644
index 0000000..4a6173f
--- /dev/null
+++ b/apps/app_shim/DEPS
@@ -0,0 +1,11 @@
+include_rules = [
+ # TODO(benwells): move this whole folder out of apps and review these.
+ # See http://crbug.com/266705.
+ "+chrome/browser/ui/extensions/application_launch.h",
+ "+chrome/browser/ui/web_applications/web_app_ui.h",
+ "+chrome/browser/web_applications/web_app_mac.h",
+ "+chrome/common/chrome_constants.h",
+ "+chrome/common/chrome_paths.h",
+ "+chrome/common/mac/app_mode_common.h",
+ "+grit/generated_resources.h",
+]