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

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

Issue 2833873003: WIP: The tracing service prototype
Patch Set: sync 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
OLDNEW
(Empty)
1 # Copyright 2017 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 "//services/service_manager/public/cpp",
16 ]
17 }
18
19 source_set("lib") {
20 sources = [
21 "agent_set_impl.cc",
22 "agent_set_impl.h",
23 "coordinator_impl.cc",
24 "coordinator_impl.h",
25 "recorder_impl.cc",
26 "recorder_impl.h",
27 "service.cc",
28 "service.h",
29 ]
30
31 public_deps = [
32 "//base",
33 "//mojo/common",
34 "//services/resource_coordinator/public/cpp:resource_coordinator_cpp",
35 ]
36 }
37
38 service_manifest("manifest") {
39 name = "tracing"
40 source = "manifest.json"
41 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698