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

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

Issue 2645973006: [Service Manager] Get rid of dynamic service discovery (Closed)
Patch Set: . Created 3 years, 11 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/shutdown/BUILD.gn ('k') | services/ui/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/cpp/service.gni") 5 import("//services/service_manager/public/cpp/service.gni")
6 import("//services/service_manager/public/service_manifest.gni") 6 import("//services/service_manager/public/service_manifest.gni")
7 7
8 service("tracing") { 8 service("tracing") {
9 sources = [ 9 sources = [
10 "main.cc", 10 "main.cc",
11 ] 11 ]
12 12
13 deps = [ 13 deps = [
14 ":lib", 14 ":lib",
15 "//mojo/public/cpp/system", 15 "//mojo/public/cpp/system",
16 "//services/service_manager/public/cpp", 16 "//services/service_manager/public/cpp",
17 ] 17 ]
18
19 data_deps = [
20 ":manifest",
21 ]
22 } 18 }
23 19
24 service_manifest("manifest") { 20 service_manifest("manifest") {
25 name = "tracing" 21 name = "tracing"
26 source = "manifest.json" 22 source = "manifest.json"
27 } 23 }
28 24
29 source_set("lib") { 25 source_set("lib") {
30 sources = [ 26 sources = [
31 "data_sink.cc", 27 "data_sink.cc",
32 "data_sink.h", 28 "data_sink.h",
33 "recorder.cc", 29 "recorder.cc",
34 "recorder.h", 30 "recorder.h",
35 "service.cc", 31 "service.cc",
36 "service.h", 32 "service.h",
37 ] 33 ]
38 34
39 deps = [ 35 deps = [
40 "//base", 36 "//base",
41 "//mojo/common:common_base", 37 "//mojo/common:common_base",
42 "//services/service_manager/public/cpp", 38 "//services/service_manager/public/cpp",
43 "//services/tracing/public/interfaces", 39 "//services/tracing/public/interfaces",
44 ] 40 ]
45 } 41 }
OLDNEW
« no previous file with comments | « services/service_manager/tests/shutdown/BUILD.gn ('k') | services/ui/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698