| 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 |
| 11 # TODO(rockot): Rename this to "cpp". | 11 # TODO(rockot): Rename this to "cpp". |
| 12 static_library("sources") { | 12 static_library("sources") { |
| 13 sources = [ | 13 sources = [ |
| 14 "binder_registry.h", | 14 "binder_registry.h", |
| 15 "connect.h", | 15 "connect.h", |
| 16 "connector.h", | 16 "connector.h", |
| 17 "identity.h", | 17 "identity.h", |
| 18 "interface_binder.h", | 18 "interface_binder.h", |
| 19 "interface_factory.h", | 19 "interface_factory.h", |
| 20 "interface_factory_impl.h", | 20 "interface_factory_impl.h", |
| 21 "interface_provider.h", | 21 "interface_provider.h", |
| 22 "interface_provider_spec.h", | 22 "interface_provider_spec.h", |
| 23 "interface_registry.h", | |
| 24 "lib/binder_registry.cc", | 23 "lib/binder_registry.cc", |
| 25 "lib/callback_binder.cc", | 24 "lib/callback_binder.cc", |
| 26 "lib/callback_binder.h", | 25 "lib/callback_binder.h", |
| 27 "lib/connector_impl.cc", | 26 "lib/connector_impl.cc", |
| 28 "lib/connector_impl.h", | 27 "lib/connector_impl.h", |
| 29 "lib/identity.cc", | 28 "lib/identity.cc", |
| 30 "lib/interface_factory_binder.h", | 29 "lib/interface_factory_binder.h", |
| 31 "lib/interface_provider.cc", | 30 "lib/interface_provider.cc", |
| 32 "lib/interface_provider_spec.cc", | 31 "lib/interface_provider_spec.cc", |
| 33 "lib/interface_registry.cc", | |
| 34 "lib/service.cc", | 32 "lib/service.cc", |
| 35 "lib/service_context.cc", | 33 "lib/service_context.cc", |
| 36 "lib/service_context_ref.cc", | 34 "lib/service_context_ref.cc", |
| 37 "lib/service_info.cc", | 35 "lib/service_info.cc", |
| 38 "lib/service_runner.cc", | 36 "lib/service_runner.cc", |
| 39 "service.h", | 37 "service.h", |
| 40 "service_context.h", | 38 "service_context.h", |
| 41 "service_context_ref.h", | 39 "service_context_ref.h", |
| 42 "service_info.h", | 40 "service_info.h", |
| 43 "service_runner.h", | 41 "service_runner.h", |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 86 "//mojo/edk/system", | 84 "//mojo/edk/system", |
| 87 "//mojo/public/cpp/bindings", | 85 "//mojo/public/cpp/bindings", |
| 88 "//mojo/public/cpp/system", | 86 "//mojo/public/cpp/system", |
| 89 "//services/service_manager/background:lib", | 87 "//services/service_manager/background:lib", |
| 90 "//services/service_manager/public/interfaces", | 88 "//services/service_manager/public/interfaces", |
| 91 ] | 89 ] |
| 92 | 90 |
| 93 data_deps = [] | 91 data_deps = [] |
| 94 } | 92 } |
| 95 } | 93 } |
| OLD | NEW |