| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2017 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 static_library("cpp") { |
| 6 public_deps = [ | |
| 7 ":sources", | |
| 8 ] | |
| 9 } | |
| 10 | |
| 11 # TODO(rockot): Rename this to "cpp". | |
| 12 static_library("sources") { | |
| 13 sources = [ | 6 sources = [ |
| 14 "bind_source_info.cc", | 7 "bind_source_info.cc", |
| 15 "bind_source_info.h", | 8 "bind_source_info.h", |
| 16 "binder_registry.cc", | 9 "binder_registry.cc", |
| 17 "binder_registry.h", | 10 "binder_registry.h", |
| 18 "connect.h", | 11 "connect.h", |
| 19 "connector.cc", | 12 "connector.cc", |
| 20 "connector.h", | 13 "connector.h", |
| 21 "identity.cc", | 14 "identity.cc", |
| 22 "identity.h", | 15 "identity.h", |
| (...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 64 "//mojo/edk/system", | 57 "//mojo/edk/system", |
| 65 "//mojo/public/cpp/bindings", | 58 "//mojo/public/cpp/bindings", |
| 66 "//mojo/public/cpp/system", | 59 "//mojo/public/cpp/system", |
| 67 "//services/service_manager/background:lib", | 60 "//services/service_manager/background:lib", |
| 68 "//services/service_manager/public/interfaces", | 61 "//services/service_manager/public/interfaces", |
| 69 ] | 62 ] |
| 70 | 63 |
| 71 data_deps = [] | 64 data_deps = [] |
| 72 } | 65 } |
| 73 } | 66 } |
| OLD | NEW |