| 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 group("cpp") { | 5 group("cpp") { |
| 6 public_deps = [ | 6 public_deps = [ |
| 7 ":sources", | 7 ":sources", |
| 8 ] | 8 ] |
| 9 } | 9 } |
| 10 | 10 |
| (...skipping 18 matching lines...) Expand all Loading... |
| 29 "lib/connector_impl.h", | 29 "lib/connector_impl.h", |
| 30 "lib/identity.cc", | 30 "lib/identity.cc", |
| 31 "lib/interface_factory_binder.h", | 31 "lib/interface_factory_binder.h", |
| 32 "lib/interface_provider.cc", | 32 "lib/interface_provider.cc", |
| 33 "lib/interface_provider_spec.cc", | 33 "lib/interface_provider_spec.cc", |
| 34 "lib/interface_registry.cc", | 34 "lib/interface_registry.cc", |
| 35 "lib/names.cc", | 35 "lib/names.cc", |
| 36 "lib/service.cc", | 36 "lib/service.cc", |
| 37 "lib/service_context.cc", | 37 "lib/service_context.cc", |
| 38 "lib/service_context_ref.cc", | 38 "lib/service_context_ref.cc", |
| 39 "lib/service_info.cc", |
| 39 "lib/service_runner.cc", | 40 "lib/service_runner.cc", |
| 40 "names.h", | 41 "names.h", |
| 41 "service.h", | 42 "service.h", |
| 42 "service_context.h", | 43 "service_context.h", |
| 43 "service_context_ref.h", | 44 "service_context_ref.h", |
| 45 "service_info.h", |
| 44 "service_runner.h", | 46 "service_runner.h", |
| 45 ] | 47 ] |
| 46 | 48 |
| 47 public_deps = [ | 49 public_deps = [ |
| 48 "//base", | 50 "//base", |
| 49 "//mojo/public/cpp/bindings", | 51 "//mojo/public/cpp/bindings", |
| 50 "//mojo/public/cpp/system", | 52 "//mojo/public/cpp/system", |
| 51 "//services/service_manager/public/interfaces", | 53 "//services/service_manager/public/interfaces", |
| 52 "//url", | 54 "//url", |
| 53 ] | 55 ] |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 86 "//base/test:test_support", | 88 "//base/test:test_support", |
| 87 "//mojo/public/cpp/bindings", | 89 "//mojo/public/cpp/bindings", |
| 88 "//mojo/public/cpp/system", | 90 "//mojo/public/cpp/system", |
| 89 "//services/service_manager/background:lib", | 91 "//services/service_manager/background:lib", |
| 90 "//services/service_manager/public/interfaces:interfaces_cpp_sources", | 92 "//services/service_manager/public/interfaces:interfaces_cpp_sources", |
| 91 ] | 93 ] |
| 92 | 94 |
| 93 data_deps = [] | 95 data_deps = [] |
| 94 } | 96 } |
| 95 } | 97 } |
| OLD | NEW |