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 19 matching lines...) Expand all Loading... |
30 "interface_factory_impl.h", | 30 "interface_factory_impl.h", |
31 "interface_registry.h", | 31 "interface_registry.h", |
32 "lib/application_runner.cc", | 32 "lib/application_runner.cc", |
33 "lib/connection_impl.cc", | 33 "lib/connection_impl.cc", |
34 "lib/connection_impl.h", | 34 "lib/connection_impl.h", |
35 "lib/connector_impl.cc", | 35 "lib/connector_impl.cc", |
36 "lib/connector_impl.h", | 36 "lib/connector_impl.h", |
37 "lib/interface_factory_binder.h", | 37 "lib/interface_factory_binder.h", |
38 "lib/interface_registry.cc", | 38 "lib/interface_registry.cc", |
39 "lib/message_loop_ref.cc", | 39 "lib/message_loop_ref.cc", |
| 40 "lib/names.cc", |
40 "lib/shell_client.cc", | 41 "lib/shell_client.cc", |
41 "lib/shell_connection.cc", | 42 "lib/shell_connection.cc", |
42 "message_loop_ref.h", | 43 "message_loop_ref.h", |
| 44 "names.h", |
43 "shell.h", | 45 "shell.h", |
44 "shell_client.h", | 46 "shell_client.h", |
45 "shell_connection.h", | 47 "shell_connection.h", |
46 ] | 48 ] |
47 | 49 |
48 deps = [ | 50 deps = [ |
49 "//base", | 51 "//base", |
50 "//base:i18n", | 52 "//base:i18n", |
51 "//mojo/message_pump", | 53 "//mojo/message_pump", |
52 ] | 54 ] |
(...skipping 30 matching lines...) Expand all Loading... |
83 "//base/test:test_support", | 85 "//base/test:test_support", |
84 "//mojo/logging", | 86 "//mojo/logging", |
85 "//mojo/public/cpp/bindings", | 87 "//mojo/public/cpp/bindings", |
86 "//mojo/public/cpp/environment", | 88 "//mojo/public/cpp/environment", |
87 "//mojo/public/cpp/system", | 89 "//mojo/public/cpp/system", |
88 "//mojo/shell/public/interfaces:interfaces_cpp_sources", | 90 "//mojo/shell/public/interfaces:interfaces_cpp_sources", |
89 ] | 91 ] |
90 | 92 |
91 data_deps = [] | 93 data_deps = [] |
92 } | 94 } |
OLD | NEW |