| 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 "bind_source_info.h", |
| 15 "binder_registry.h", | 15 "binder_registry.h", |
| 16 "connect.h", | 16 "connect.h", |
| 17 "connector.cc", | 17 "connector.cc", |
| 18 "connector.h", | 18 "connector.h", |
| 19 "identity.h", | 19 "identity.h", |
| 20 "interface_binder.cc", |
| 20 "interface_binder.h", | 21 "interface_binder.h", |
| 21 "interface_provider.h", | 22 "interface_provider.h", |
| 22 "interface_provider_spec.h", | 23 "interface_provider_spec.h", |
| 23 "lib/bind_source_info.cc", | 24 "lib/bind_source_info.cc", |
| 24 "lib/binder_registry.cc", | 25 "lib/binder_registry.cc", |
| 25 "lib/callback_binder.cc", | |
| 26 "lib/callback_binder.h", | |
| 27 "lib/identity.cc", | 26 "lib/identity.cc", |
| 28 "lib/interface_provider.cc", | 27 "lib/interface_provider.cc", |
| 29 "lib/interface_provider_spec.cc", | 28 "lib/interface_provider_spec.cc", |
| 30 "lib/service.cc", | 29 "lib/service.cc", |
| 31 "lib/service_context.cc", | 30 "lib/service_context.cc", |
| 32 "lib/service_context_ref.cc", | 31 "lib/service_context_ref.cc", |
| 33 "lib/service_runner.cc", | 32 "lib/service_runner.cc", |
| 34 "service.h", | 33 "service.h", |
| 35 "service_context.h", | 34 "service_context.h", |
| 36 "service_context_ref.h", | 35 "service_context_ref.h", |
| (...skipping 28 matching lines...) Expand all Loading... |
| 65 "//mojo/edk/system", | 64 "//mojo/edk/system", |
| 66 "//mojo/public/cpp/bindings", | 65 "//mojo/public/cpp/bindings", |
| 67 "//mojo/public/cpp/system", | 66 "//mojo/public/cpp/system", |
| 68 "//services/service_manager/background:lib", | 67 "//services/service_manager/background:lib", |
| 69 "//services/service_manager/public/interfaces", | 68 "//services/service_manager/public/interfaces", |
| 70 ] | 69 ] |
| 71 | 70 |
| 72 data_deps = [] | 71 data_deps = [] |
| 73 } | 72 } |
| 74 } | 73 } |
| OLD | NEW |