Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(158)

Unified Diff: chrome/browser/apps/BUILD.gn

Issue 2789253003: Add chrome/browser/apps/BUILD.gn and move Chrome-specific code there (Closed)
Patch Set: rebase Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/BUILD.gn ('k') | chrome/browser/apps/app_load_service.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/apps/BUILD.gn
diff --git a/chrome/browser/apps/BUILD.gn b/chrome/browser/apps/BUILD.gn
new file mode 100644
index 0000000000000000000000000000000000000000..c56220320e10342d98c055aa41a71f19e8b91efa
--- /dev/null
+++ b/chrome/browser/apps/BUILD.gn
@@ -0,0 +1,56 @@
+# Copyright 2017 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+import("//extensions/features/features.gni")
+
+assert(enable_extensions)
+
+source_set("apps") {
+ sources = [
+ "app_launch_for_metro_restart_win.cc",
+ "app_launch_for_metro_restart_win.h",
+ "app_load_service.cc",
+ "app_load_service.h",
+ "app_load_service_factory.cc",
+ "app_load_service_factory.h",
+ "app_url_redirector.cc",
+ "app_url_redirector.h",
+ "app_window_registry_util.cc",
+ "app_window_registry_util.h",
+ "browser_context_keyed_service_factories.cc",
+ "browser_context_keyed_service_factories.h",
+ "install_chrome_app.cc",
+ "install_chrome_app.h",
+ "shortcut_manager.cc",
+ "shortcut_manager.h",
+ "shortcut_manager_factory.cc",
+ "shortcut_manager_factory.h",
+ ]
+
+ configs += [ "//build/config/compiler:wexit_time_destructors" ]
+
+ public_deps = [
+ "//apps",
+ ]
+
+ deps = [
+ "//chrome/app:command_ids",
+ "//chrome/browser/extensions",
+ "//chrome/browser/media/router/discovery",
+ "//chrome/common",
+ "//components/crx_file",
+ "//components/keyed_service/content",
+ "//components/navigation_interception",
+ "//components/pref_registry",
+ "//content/public/browser",
+ "//content/public/common",
+ "//extensions/browser",
+ "//extensions/common",
+ "//extensions/common/api",
+ "//net",
+ "//ui/gfx",
+ ]
+
+ allow_circular_includes_from = [ "//chrome/browser/extensions" ]
+}
« no previous file with comments | « chrome/browser/BUILD.gn ('k') | chrome/browser/apps/app_load_service.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698