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 18 matching lines...) Expand all Loading... |
29 "interface_factory.h", | 29 "interface_factory.h", |
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/shell_client.cc", | 40 "lib/shell_client.cc", |
40 "lib/shell_connection.cc", | 41 "lib/shell_connection.cc", |
| 42 "message_loop_ref.h", |
41 "shell.h", | 43 "shell.h", |
42 "shell_client.h", | 44 "shell_client.h", |
43 "shell_connection.h", | 45 "shell_connection.h", |
44 ] | 46 ] |
45 | 47 |
46 deps = [ | 48 deps = [ |
47 "//base", | 49 "//base", |
48 "//base:i18n", | 50 "//base:i18n", |
49 "//mojo/message_pump", | 51 "//mojo/message_pump", |
50 ] | 52 ] |
(...skipping 30 matching lines...) Expand all Loading... |
81 "//base/test:test_support", | 83 "//base/test:test_support", |
82 "//mojo/logging", | 84 "//mojo/logging", |
83 "//mojo/public/cpp/bindings", | 85 "//mojo/public/cpp/bindings", |
84 "//mojo/public/cpp/environment", | 86 "//mojo/public/cpp/environment", |
85 "//mojo/public/cpp/system", | 87 "//mojo/public/cpp/system", |
86 "//mojo/shell/public/interfaces:interfaces_cpp_sources", | 88 "//mojo/shell/public/interfaces:interfaces_cpp_sources", |
87 ] | 89 ] |
88 | 90 |
89 data_deps = [] | 91 data_deps = [] |
90 } | 92 } |
OLD | NEW |