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

Side by Side Diff: mojo/shell/BUILD.gn

Issue 1712233002: 9/ Thin out dependencies (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@8name
Patch Set: . Created 4 years, 10 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 | « no previous file | mojo/shell/background/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 import("//mojo/public/tools/bindings/mojom.gni") 5 import("//mojo/public/tools/bindings/mojom.gni")
6 import("//testing/test.gni") 6 import("//testing/test.gni")
7 7
8 group("all") { 8 group("all") {
9 testonly = true 9 testonly = true
10 deps = [ 10 deps = [
11 ":shell", 11 ":shell",
12 "//mojo/shell/background", 12 "//mojo/shell/background",
13 "//mojo/shell/background",
14 "//mojo/shell/runner", 13 "//mojo/shell/runner",
15 "//mojo/shell/standalone", 14 "//mojo/shell/standalone",
16 "//mojo/shell/tests", 15 "//mojo/shell/tests",
17 ] 16 ]
18 } 17 }
19 18
20 source_set("shell") { 19 source_set("shell") {
21 output_name = "mojo_shell" 20 output_name = "mojo_shell"
22 sources = [ 21 sources = [
23 "application_instance.cc", 22 "application_instance.cc",
24 "application_instance.h", 23 "application_instance.h",
25 "application_loader.h", 24 "application_loader.h",
26 "application_manager.cc", 25 "application_manager.cc",
27 "application_manager.h", 26 "application_manager.h",
28 "capability_filter.cc", 27 "capability_filter.cc",
29 "capability_filter.h", 28 "capability_filter.h",
30 "connect_params.cc", 29 "connect_params.cc",
31 "connect_params.h", 30 "connect_params.h",
32 "connect_util.cc", 31 "connect_util.cc",
33 "connect_util.h", 32 "connect_util.h",
34 "identity.cc", 33 "identity.cc",
35 "identity.h", 34 "identity.h",
36 "native_runner.h", 35 "native_runner.h",
37 "switches.cc", 36 "switches.cc",
38 "switches.h", 37 "switches.h",
39 ] 38 ]
40 39
41 public_deps = [ 40 deps = [
42 "//base", 41 "//base",
42 "//base/third_party/dynamic_annotations",
43 "//mojo/common", 43 "//mojo/common",
44 "//mojo/public/cpp/bindings", 44 "//mojo/public/cpp/bindings",
45 "//mojo/services/package_manager:lib",
45 "//mojo/services/package_manager/public/interfaces", 46 "//mojo/services/package_manager/public/interfaces",
46 "//mojo/services/updater", 47 "//mojo/shell/public/cpp:sources",
47 "//mojo/shell/public/interfaces", 48 "//mojo/shell/public/interfaces",
48 "//url",
49 ]
50 deps = [
51 "//base/third_party/dynamic_annotations",
52 "//crypto:crypto",
53 "//mojo/edk/system",
54 "//mojo/environment:chromium",
55 "//mojo/services/package_manager:lib",
56 "//mojo/shell/public/cpp:sources",
57 "//mojo/util:filename_util", 49 "//mojo/util:filename_util",
58 "//url", 50 "//url",
59 ] 51 ]
60 52
61 # For mojo/shell/application_loader.h 53 # For mojo/shell/application_loader.h
62 allow_circular_includes_from = [ "//mojo/services/package_manager:lib" ] 54 allow_circular_includes_from = [ "//mojo/services/package_manager:lib" ]
63 } 55 }
OLDNEW
« no previous file with comments | « no previous file | mojo/shell/background/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698