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 # GYP version: mojo/mojo_base.gyp:mojo_application_base | 5 # GYP version: mojo/mojo_base.gyp:mojo_application_base |
6 source_set("cpp") { | 6 source_set("cpp") { |
7 public_deps = [ | 7 public_deps = [ |
8 ":sources", | 8 ":sources", |
9 ] | 9 ] |
10 } | 10 } |
(...skipping 15 matching lines...) Expand all Loading... |
26 "lib/callback_binder.h", | 26 "lib/callback_binder.h", |
27 "lib/capabilities.cc", | 27 "lib/capabilities.cc", |
28 "lib/connection_impl.cc", | 28 "lib/connection_impl.cc", |
29 "lib/connection_impl.h", | 29 "lib/connection_impl.h", |
30 "lib/connector_impl.cc", | 30 "lib/connector_impl.cc", |
31 "lib/connector_impl.h", | 31 "lib/connector_impl.h", |
32 "lib/identity.cc", | 32 "lib/identity.cc", |
33 "lib/interface_factory_binder.h", | 33 "lib/interface_factory_binder.h", |
34 "lib/interface_registry.cc", | 34 "lib/interface_registry.cc", |
35 "lib/names.cc", | 35 "lib/names.cc", |
| 36 "lib/remote_interface_registry.cc", |
36 "lib/shell_client.cc", | 37 "lib/shell_client.cc", |
37 "lib/shell_connection.cc", | 38 "lib/shell_connection.cc", |
38 "lib/shell_connection_ref.cc", | 39 "lib/shell_connection_ref.cc", |
39 "names.h", | 40 "names.h", |
| 41 "remote_interface_registry.h", |
40 "shell_client.h", | 42 "shell_client.h", |
41 "shell_connection.h", | 43 "shell_connection.h", |
42 "shell_connection_ref.h", | 44 "shell_connection_ref.h", |
43 ] | 45 ] |
44 | 46 |
45 public_deps = [ | 47 public_deps = [ |
46 "//base", | 48 "//base", |
47 "//mojo/public/cpp/bindings", | 49 "//mojo/public/cpp/bindings", |
48 "//mojo/public/cpp/system", | 50 "//mojo/public/cpp/system", |
49 "//services/shell/public/interfaces", | 51 "//services/shell/public/interfaces", |
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
82 "//base/test:test_support", | 84 "//base/test:test_support", |
83 "//mojo/public/cpp/bindings", | 85 "//mojo/public/cpp/bindings", |
84 "//mojo/public/cpp/system", | 86 "//mojo/public/cpp/system", |
85 "//services/shell/background:lib", | 87 "//services/shell/background:lib", |
86 "//services/shell/public/interfaces:interfaces_cpp_sources", | 88 "//services/shell/public/interfaces:interfaces_cpp_sources", |
87 ] | 89 ] |
88 | 90 |
89 data_deps = [] | 91 data_deps = [] |
90 } | 92 } |
91 } | 93 } |
OLD | NEW |