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

Side by Side Diff: services/tracing/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/shell/tests/util.cc ('k') | services/tracing/main.cc » ('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/shell/public/cpp/service.gni") 5 import("//services/service_manager/public/cpp/service.gni")
6 import("//services/shell/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 avoid_runner_cycle = true 13 avoid_runner_cycle = true
14 14
15 deps = [ 15 deps = [
16 ":lib", 16 ":lib",
17 "//mojo/public/cpp/system", 17 "//mojo/public/cpp/system",
18 "//services/shell/public/cpp", 18 "//services/service_manager/public/cpp",
19 ] 19 ]
20 20
21 data_deps = [ 21 data_deps = [
22 ":manifest", 22 ":manifest",
23 ] 23 ]
24 } 24 }
25 25
26 service_manifest("manifest") { 26 service_manifest("manifest") {
27 name = "tracing" 27 name = "tracing"
28 source = "manifest.json" 28 source = "manifest.json"
29 } 29 }
30 30
31 source_set("lib") { 31 source_set("lib") {
32 sources = [ 32 sources = [
33 "data_sink.cc", 33 "data_sink.cc",
34 "data_sink.h", 34 "data_sink.h",
35 "recorder.cc", 35 "recorder.cc",
36 "recorder.h", 36 "recorder.h",
37 "service.cc", 37 "service.cc",
38 "service.h", 38 "service.h",
39 ] 39 ]
40 40
41 deps = [ 41 deps = [
42 "//base", 42 "//base",
43 "//mojo/common:common_base", 43 "//mojo/common:common_base",
44 "//services/shell/public/cpp", 44 "//services/service_manager/public/cpp",
45 "//services/tracing/public/interfaces", 45 "//services/tracing/public/interfaces",
46 ] 46 ]
47 } 47 }
OLDNEW
« no previous file with comments | « services/shell/tests/util.cc ('k') | services/tracing/main.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698