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 18 matching lines...) Expand all Loading... |
29 "lib/capabilities.cc", | 29 "lib/capabilities.cc", |
30 "lib/connection_impl.cc", | 30 "lib/connection_impl.cc", |
31 "lib/connection_impl.h", | 31 "lib/connection_impl.h", |
32 "lib/connector_impl.cc", | 32 "lib/connector_impl.cc", |
33 "lib/connector_impl.h", | 33 "lib/connector_impl.h", |
34 "lib/identity.cc", | 34 "lib/identity.cc", |
35 "lib/interface_factory_binder.h", | 35 "lib/interface_factory_binder.h", |
36 "lib/interface_provider.cc", | 36 "lib/interface_provider.cc", |
37 "lib/interface_registry.cc", | 37 "lib/interface_registry.cc", |
38 "lib/names.cc", | 38 "lib/names.cc", |
39 "lib/shell_client.cc", | 39 "lib/service.cc", |
40 "lib/shell_connection.cc", | 40 "lib/shell_connection.cc", |
41 "lib/shell_connection_ref.cc", | 41 "lib/shell_connection_ref.cc", |
42 "names.h", | 42 "names.h", |
43 "shell_client.h", | 43 "service.h", |
44 "shell_connection.h", | 44 "shell_connection.h", |
45 "shell_connection_ref.h", | 45 "shell_connection_ref.h", |
46 ] | 46 ] |
47 | 47 |
48 public_deps = [ | 48 public_deps = [ |
49 "//base", | 49 "//base", |
50 "//mojo/public/cpp/bindings", | 50 "//mojo/public/cpp/bindings", |
51 "//mojo/public/cpp/system", | 51 "//mojo/public/cpp/system", |
52 "//services/shell/public/interfaces", | 52 "//services/shell/public/interfaces", |
53 "//url", | 53 "//url", |
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
85 "//base/test:test_support", | 85 "//base/test:test_support", |
86 "//mojo/public/cpp/bindings", | 86 "//mojo/public/cpp/bindings", |
87 "//mojo/public/cpp/system", | 87 "//mojo/public/cpp/system", |
88 "//services/shell/background:lib", | 88 "//services/shell/background:lib", |
89 "//services/shell/public/interfaces:interfaces_cpp_sources", | 89 "//services/shell/public/interfaces:interfaces_cpp_sources", |
90 ] | 90 ] |
91 | 91 |
92 data_deps = [] | 92 data_deps = [] |
93 } | 93 } |
94 } | 94 } |
OLD | NEW |