| 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", |
| 11 ] | 11 ] |
| 12 | 12 |
| 13 avoid_runner_cycle = true | |
| 14 | |
| 15 deps = [ | 13 deps = [ |
| 16 ":lib", | 14 ":lib", |
| 17 "//mojo/public/cpp/system", | 15 "//mojo/public/cpp/system", |
| 18 "//services/service_manager/public/cpp", | 16 "//services/service_manager/public/cpp", |
| 19 ] | 17 ] |
| 20 | 18 |
| 21 data_deps = [ | 19 data_deps = [ |
| 22 ":manifest", | 20 ":manifest", |
| 23 ] | 21 ] |
| 24 } | 22 } |
| (...skipping 13 matching lines...) Expand all Loading... |
| 38 "service.h", | 36 "service.h", |
| 39 ] | 37 ] |
| 40 | 38 |
| 41 deps = [ | 39 deps = [ |
| 42 "//base", | 40 "//base", |
| 43 "//mojo/common:common_base", | 41 "//mojo/common:common_base", |
| 44 "//services/service_manager/public/cpp", | 42 "//services/service_manager/public/cpp", |
| 45 "//services/tracing/public/interfaces", | 43 "//services/tracing/public/interfaces", |
| 46 ] | 44 ] |
| 47 } | 45 } |
| OLD | NEW |