| 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("//mojo/public/tools/bindings/mojom.gni") | 6 import("//mojo/public/tools/bindings/mojom.gni") |
| 7 import("//testing/test.gni") | 7 import("//testing/test.gni") |
| 8 | 8 |
| 9 source_set("standalone") { | 9 source_set("standalone") { |
| 10 sources = [ | 10 sources = [ |
| 11 "context.cc", | 11 "context.cc", |
| 12 "context.h", | 12 "context.h", |
| 13 "tracer.cc", | |
| 14 "tracer.h", | |
| 15 ] | 13 ] |
| 16 | 14 |
| 17 deps = [ | 15 deps = [ |
| 18 "//base", | 16 "//base", |
| 19 "//base/third_party/dynamic_annotations", | 17 "//base/third_party/dynamic_annotations", |
| 20 "//components/tracing:startup_tracing", | 18 "//components/tracing:startup_tracing", |
| 21 "//mojo/common:common_base", | 19 "//mojo/common:common_base", |
| 22 "//mojo/edk/system", | 20 "//mojo/edk/system", |
| 23 "//services/catalog:lib", | 21 "//services/catalog:lib", |
| 24 "//services/service_manager", | 22 "//services/service_manager", |
| 25 "//services/service_manager/public/cpp", | 23 "//services/service_manager/public/cpp", |
| 26 "//services/service_manager/public/cpp/standalone_service", | 24 "//services/service_manager/public/cpp/standalone_service", |
| 27 "//services/service_manager/runner/common", | 25 "//services/service_manager/runner/common", |
| 28 "//services/service_manager/runner/host:lib", | 26 "//services/service_manager/runner/host:lib", |
| 29 "//services/tracing/public/cpp", | |
| 30 "//services/tracing/public/interfaces", | |
| 31 "//url", | 27 "//url", |
| 32 ] | 28 ] |
| 33 } | 29 } |
| OLD | NEW |