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 "bind_source_info.h", |
14 "binder_registry.h", | 15 "binder_registry.h", |
15 "connect.h", | 16 "connect.h", |
16 "connector.h", | 17 "connector.h", |
17 "identity.h", | 18 "identity.h", |
18 "interface_binder.h", | 19 "interface_binder.h", |
19 "interface_factory.h", | 20 "interface_factory.h", |
20 "interface_factory_impl.h", | 21 "interface_factory_impl.h", |
21 "interface_provider.h", | 22 "interface_provider.h", |
22 "interface_provider_spec.h", | 23 "interface_provider_spec.h", |
| 24 "lib/bind_source_info.cc", |
23 "lib/binder_registry.cc", | 25 "lib/binder_registry.cc", |
24 "lib/callback_binder.cc", | 26 "lib/callback_binder.cc", |
25 "lib/callback_binder.h", | 27 "lib/callback_binder.h", |
26 "lib/connector_impl.cc", | 28 "lib/connector_impl.cc", |
27 "lib/connector_impl.h", | 29 "lib/connector_impl.h", |
28 "lib/identity.cc", | 30 "lib/identity.cc", |
29 "lib/interface_factory_binder.h", | 31 "lib/interface_factory_binder.h", |
30 "lib/interface_provider.cc", | 32 "lib/interface_provider.cc", |
31 "lib/interface_provider_spec.cc", | 33 "lib/interface_provider_spec.cc", |
32 "lib/service.cc", | 34 "lib/service.cc", |
33 "lib/service_context.cc", | 35 "lib/service_context.cc", |
34 "lib/service_context_ref.cc", | 36 "lib/service_context_ref.cc", |
35 "lib/service_info.cc", | |
36 "lib/service_runner.cc", | 37 "lib/service_runner.cc", |
37 "service.h", | 38 "service.h", |
38 "service_context.h", | 39 "service_context.h", |
39 "service_context_ref.h", | 40 "service_context_ref.h", |
40 "service_info.h", | |
41 "service_runner.h", | 41 "service_runner.h", |
42 ] | 42 ] |
43 | 43 |
44 public_deps = [ | 44 public_deps = [ |
45 "//base", | 45 "//base", |
46 "//mojo/public/cpp/bindings", | 46 "//mojo/public/cpp/bindings", |
47 "//mojo/public/cpp/system", | 47 "//mojo/public/cpp/system", |
48 "//services/service_manager/public/interfaces", | 48 "//services/service_manager/public/interfaces", |
49 "//url", | 49 "//url", |
50 ] | 50 ] |
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
84 "//mojo/edk/system", | 84 "//mojo/edk/system", |
85 "//mojo/public/cpp/bindings", | 85 "//mojo/public/cpp/bindings", |
86 "//mojo/public/cpp/system", | 86 "//mojo/public/cpp/system", |
87 "//services/service_manager/background:lib", | 87 "//services/service_manager/background:lib", |
88 "//services/service_manager/public/interfaces", | 88 "//services/service_manager/public/interfaces", |
89 ] | 89 ] |
90 | 90 |
91 data_deps = [] | 91 data_deps = [] |
92 } | 92 } |
93 } | 93 } |
OLD | NEW |