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 |
(...skipping 21 matching lines...) Expand all Loading... |
32 "lib/identity.cc", | 32 "lib/identity.cc", |
33 "lib/interface_factory_binder.h", | 33 "lib/interface_factory_binder.h", |
34 "lib/interface_provider.cc", | 34 "lib/interface_provider.cc", |
35 "lib/interface_provider_spec.cc", | 35 "lib/interface_provider_spec.cc", |
36 "lib/interface_registry.cc", | 36 "lib/interface_registry.cc", |
37 "lib/service.cc", | 37 "lib/service.cc", |
38 "lib/service_context.cc", | 38 "lib/service_context.cc", |
39 "lib/service_context_ref.cc", | 39 "lib/service_context_ref.cc", |
40 "lib/service_info.cc", | 40 "lib/service_info.cc", |
41 "lib/service_runner.cc", | 41 "lib/service_runner.cc", |
42 "lib/shared_file_util.cc", | |
43 "service.h", | 42 "service.h", |
44 "service_context.h", | 43 "service_context.h", |
45 "service_context_ref.h", | 44 "service_context_ref.h", |
46 "service_info.h", | 45 "service_info.h", |
47 "service_runner.h", | 46 "service_runner.h", |
48 "shared_file_util.h", | |
49 ] | 47 ] |
50 | 48 |
51 public_deps = [ | 49 public_deps = [ |
52 "//base", | 50 "//base", |
53 "//mojo/public/cpp/bindings", | 51 "//mojo/public/cpp/bindings", |
54 "//mojo/public/cpp/system", | 52 "//mojo/public/cpp/system", |
55 "//services/service_manager/public/interfaces", | 53 "//services/service_manager/public/interfaces", |
56 "//url", | 54 "//url", |
57 ] | 55 ] |
58 } | 56 } |
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
91 "//mojo/edk/system", | 89 "//mojo/edk/system", |
92 "//mojo/public/cpp/bindings", | 90 "//mojo/public/cpp/bindings", |
93 "//mojo/public/cpp/system", | 91 "//mojo/public/cpp/system", |
94 "//services/service_manager/background:lib", | 92 "//services/service_manager/background:lib", |
95 "//services/service_manager/public/interfaces", | 93 "//services/service_manager/public/interfaces", |
96 ] | 94 ] |
97 | 95 |
98 data_deps = [] | 96 data_deps = [] |
99 } | 97 } |
100 } | 98 } |
OLD | NEW |