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 } |
11 | 11 |
12 # TODO(rockot): Rename this to "cpp". | 12 # TODO(rockot): Rename this to "cpp". |
13 source_set("sources") { | 13 source_set("sources") { |
14 sources = [ | 14 sources = [ |
15 "application_runner.h", | 15 "application_runner.h", |
16 "capabilities.h", | 16 "capabilities.h", |
17 "connect.h", | 17 "connect.h", |
18 "connection.h", | 18 "connection.h", |
19 "connector.h", | 19 "connector.h", |
20 "identity.h", | 20 "identity.h", |
21 "interface_binder.h", | 21 "interface_binder.h", |
22 "interface_factory.h", | 22 "interface_factory.h", |
23 "interface_factory_impl.h", | 23 "interface_factory_impl.h", |
| 24 "interface_provider.h", |
24 "interface_registry.h", | 25 "interface_registry.h", |
25 "lib/application_runner.cc", | 26 "lib/application_runner.cc", |
| 27 "lib/callback_binder.cc", |
26 "lib/callback_binder.h", | 28 "lib/callback_binder.h", |
27 "lib/capabilities.cc", | 29 "lib/capabilities.cc", |
28 "lib/connection_impl.cc", | 30 "lib/connection_impl.cc", |
29 "lib/connection_impl.h", | 31 "lib/connection_impl.h", |
30 "lib/connector_impl.cc", | 32 "lib/connector_impl.cc", |
31 "lib/connector_impl.h", | 33 "lib/connector_impl.h", |
32 "lib/identity.cc", | 34 "lib/identity.cc", |
33 "lib/interface_factory_binder.h", | 35 "lib/interface_factory_binder.h", |
| 36 "lib/interface_provider.cc", |
34 "lib/interface_registry.cc", | 37 "lib/interface_registry.cc", |
35 "lib/names.cc", | 38 "lib/names.cc", |
36 "lib/remote_interface_registry.cc", | |
37 "lib/shell_client.cc", | 39 "lib/shell_client.cc", |
38 "lib/shell_connection.cc", | 40 "lib/shell_connection.cc", |
39 "lib/shell_connection_ref.cc", | 41 "lib/shell_connection_ref.cc", |
40 "names.h", | 42 "names.h", |
41 "remote_interface_registry.h", | |
42 "shell_client.h", | 43 "shell_client.h", |
43 "shell_connection.h", | 44 "shell_connection.h", |
44 "shell_connection_ref.h", | 45 "shell_connection_ref.h", |
45 ] | 46 ] |
46 | 47 |
47 public_deps = [ | 48 public_deps = [ |
48 "//base", | 49 "//base", |
49 "//mojo/public/cpp/bindings", | 50 "//mojo/public/cpp/bindings", |
50 "//mojo/public/cpp/system", | 51 "//mojo/public/cpp/system", |
51 "//services/shell/public/interfaces", | 52 "//services/shell/public/interfaces", |
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
84 "//base/test:test_support", | 85 "//base/test:test_support", |
85 "//mojo/public/cpp/bindings", | 86 "//mojo/public/cpp/bindings", |
86 "//mojo/public/cpp/system", | 87 "//mojo/public/cpp/system", |
87 "//services/shell/background:lib", | 88 "//services/shell/background:lib", |
88 "//services/shell/public/interfaces:interfaces_cpp_sources", | 89 "//services/shell/public/interfaces:interfaces_cpp_sources", |
89 ] | 90 ] |
90 | 91 |
91 data_deps = [] | 92 data_deps = [] |
92 } | 93 } |
93 } | 94 } |
OLD | NEW |