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

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

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

Powered by Google App Engine
This is Rietveld 408576698