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

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

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

Powered by Google App Engine
This is Rietveld 408576698