| OLD | NEW |
| 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", |
| (...skipping 14 matching lines...) Expand all Loading... |
| 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 "mojo_tracing_application_factory.cc", |
| 36 "mojo_tracing_application_factory.h", |
| 35 "recorder.cc", | 37 "recorder.cc", |
| 36 "recorder.h", | 38 "recorder.h", |
| 37 "service.cc", | 39 "service.cc", |
| 38 "service.h", | 40 "service.h", |
| 39 ] | 41 ] |
| 40 | 42 |
| 41 deps = [ | 43 deps = [ |
| 42 "//base", | 44 "//base", |
| 43 "//mojo/common:common_base", | 45 "//mojo/common:common_base", |
| 44 "//services/service_manager/public/cpp", | 46 "//services/service_manager/public/cpp", |
| 45 "//services/tracing/public/interfaces", | 47 "//services/tracing/public/interfaces", |
| 46 ] | 48 ] |
| 47 } | 49 } |
| OLD | NEW |