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 ":init_commandline", | 8 ":init_commandline", |
9 ":sources", | 9 ":sources", |
10 ] | 10 ] |
(...skipping 28 matching lines...) Expand all Loading... |
39 "lib/connector_impl.h", | 39 "lib/connector_impl.h", |
40 "lib/identity.cc", | 40 "lib/identity.cc", |
41 "lib/interface_factory_binder.h", | 41 "lib/interface_factory_binder.h", |
42 "lib/interface_registry.cc", | 42 "lib/interface_registry.cc", |
43 "lib/message_loop_ref.cc", | 43 "lib/message_loop_ref.cc", |
44 "lib/names.cc", | 44 "lib/names.cc", |
45 "lib/shell_client.cc", | 45 "lib/shell_client.cc", |
46 "lib/shell_connection.cc", | 46 "lib/shell_connection.cc", |
47 "message_loop_ref.h", | 47 "message_loop_ref.h", |
48 "names.h", | 48 "names.h", |
49 "shell.h", | |
50 "shell_client.h", | 49 "shell_client.h", |
51 "shell_connection.h", | 50 "shell_connection.h", |
52 ] | 51 ] |
53 | 52 |
54 deps = [ | 53 deps = [ |
55 "//base", | 54 "//base", |
56 "//base:i18n", | 55 "//base:i18n", |
57 ] | 56 ] |
58 | 57 |
59 public_deps = [ | 58 public_deps = [ |
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
112 "//base/test:test_support", | 111 "//base/test:test_support", |
113 "//mojo/logging", | 112 "//mojo/logging", |
114 "//mojo/public/cpp/bindings", | 113 "//mojo/public/cpp/bindings", |
115 "//mojo/public/cpp/system", | 114 "//mojo/public/cpp/system", |
116 "//services/shell/background:lib", | 115 "//services/shell/background:lib", |
117 "//services/shell/public/interfaces:interfaces_cpp_sources", | 116 "//services/shell/public/interfaces:interfaces_cpp_sources", |
118 ] | 117 ] |
119 | 118 |
120 data_deps = [] | 119 data_deps = [] |
121 } | 120 } |
OLD | NEW |