diff options
-rw-r--r-- | apps/DEPS | 10 | ||||
-rw-r--r-- | apps/app_host/DEPS | 1 | ||||
-rw-r--r-- | apps/app_launcher.cc | 5 | ||||
-rw-r--r-- | apps/app_shim/DEPS | 11 |
4 files changed, 12 insertions, 15 deletions
@@ -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", +] |