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 "connection.h", | |
17 "connector.h", | 16 "connector.h", |
18 "identity.h", | 17 "identity.h", |
19 "interface_binder.h", | 18 "interface_binder.h", |
20 "interface_factory.h", | 19 "interface_factory.h", |
21 "interface_factory_impl.h", | 20 "interface_factory_impl.h", |
22 "interface_provider.h", | 21 "interface_provider.h", |
23 "interface_provider_spec.h", | 22 "interface_provider_spec.h", |
24 "interface_registry.h", | 23 "interface_registry.h", |
25 "lib/binder_registry.cc", | 24 "lib/binder_registry.cc", |
26 "lib/callback_binder.cc", | 25 "lib/callback_binder.cc", |
27 "lib/callback_binder.h", | 26 "lib/callback_binder.h", |
28 "lib/connection_impl.cc", | |
29 "lib/connection_impl.h", | |
30 "lib/connector_impl.cc", | 27 "lib/connector_impl.cc", |
31 "lib/connector_impl.h", | 28 "lib/connector_impl.h", |
32 "lib/identity.cc", | 29 "lib/identity.cc", |
33 "lib/interface_factory_binder.h", | 30 "lib/interface_factory_binder.h", |
34 "lib/interface_provider.cc", | 31 "lib/interface_provider.cc", |
35 "lib/interface_provider_spec.cc", | 32 "lib/interface_provider_spec.cc", |
36 "lib/interface_registry.cc", | 33 "lib/interface_registry.cc", |
37 "lib/service.cc", | 34 "lib/service.cc", |
38 "lib/service_context.cc", | 35 "lib/service_context.cc", |
39 "lib/service_context_ref.cc", | 36 "lib/service_context_ref.cc", |
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
89 "//mojo/edk/system", | 86 "//mojo/edk/system", |
90 "//mojo/public/cpp/bindings", | 87 "//mojo/public/cpp/bindings", |
91 "//mojo/public/cpp/system", | 88 "//mojo/public/cpp/system", |
92 "//services/service_manager/background:lib", | 89 "//services/service_manager/background:lib", |
93 "//services/service_manager/public/interfaces", | 90 "//services/service_manager/public/interfaces", |
94 ] | 91 ] |
95 | 92 |
96 data_deps = [] | 93 data_deps = [] |
97 } | 94 } |
98 } | 95 } |
OLD | NEW |