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

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

Issue 2419723002: Move services/shell to services/service_manager (Closed)
Patch Set: rebase Created 4 years, 2 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 | « services/service_manager/tests/util.cc ('k') | services/shell/OWNERS » ('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 2014 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("//services/shell/public/service_manifest.gni")
6 import("//mojo/public/tools/bindings/mojom.gni")
7 import("//testing/test.gni")
8
9 group("all") {
10 testonly = true
11 deps = [
12 ":shell",
13 "//services/shell/background",
14 "//services/shell/runner",
15 "//services/shell/standalone",
16 "//services/shell/tests",
17 ]
18 }
19
20 source_set("shell") {
21 output_name = "mojo_shell"
22 sources = [
23 "connect_params.cc",
24 "connect_params.h",
25 "connect_util.cc",
26 "connect_util.h",
27 "native_runner.h",
28 "native_runner_delegate.h",
29 "service_manager.cc",
30 "service_manager.h",
31 "service_overrides.cc",
32 "service_overrides.h",
33 "switches.cc",
34 "switches.h",
35 ]
36
37 deps = [
38 "//base",
39 "//base/third_party/dynamic_annotations",
40 "//mojo/common",
41 "//mojo/public/cpp/bindings",
42 "//services/catalog/public/interfaces",
43 "//services/shell/public/cpp:sources",
44 "//services/shell/public/interfaces",
45 ]
46
47 public_deps = [
48 # ApplicationManager exposes and uses PackageManager types in its header.
49 "//services/catalog:lib",
50 ]
51
52 data_deps = [
53 ":manifest",
54 ]
55 }
56
57 service_manifest("manifest") {
58 name = "shell"
59 source = "manifest.json"
60 }
OLDNEW
« no previous file with comments | « services/service_manager/tests/util.cc ('k') | services/shell/OWNERS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698