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

Side by Side 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 unified diff | 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 »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 # Copyright 2017 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
4
5 import("//extensions/features/features.gni")
6
7 assert(enable_extensions)
8
9 source_set("apps") {
10 sources = [
11 "app_launch_for_metro_restart_win.cc",
12 "app_launch_for_metro_restart_win.h",
13 "app_load_service.cc",
14 "app_load_service.h",
15 "app_load_service_factory.cc",
16 "app_load_service_factory.h",
17 "app_url_redirector.cc",
18 "app_url_redirector.h",
19 "app_window_registry_util.cc",
20 "app_window_registry_util.h",
21 "browser_context_keyed_service_factories.cc",
22 "browser_context_keyed_service_factories.h",
23 "install_chrome_app.cc",
24 "install_chrome_app.h",
25 "shortcut_manager.cc",
26 "shortcut_manager.h",
27 "shortcut_manager_factory.cc",
28 "shortcut_manager_factory.h",
29 ]
30
31 configs += [ "//build/config/compiler:wexit_time_destructors" ]
32
33 public_deps = [
34 "//apps",
35 ]
36
37 deps = [
38 "//chrome/app:command_ids",
39 "//chrome/browser/extensions",
40 "//chrome/browser/media/router/discovery",
41 "//chrome/common",
42 "//components/crx_file",
43 "//components/keyed_service/content",
44 "//components/navigation_interception",
45 "//components/pref_registry",
46 "//content/public/browser",
47 "//content/public/common",
48 "//extensions/browser",
49 "//extensions/common",
50 "//extensions/common/api",
51 "//net",
52 "//ui/gfx",
53 ]
54
55 allow_circular_includes_from = [ "//chrome/browser/extensions" ]
56 }
OLDNEW
« 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