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 ] |
11 } | 11 } |
12 | 12 |
13 # Like the target above, but without special commandline initialization that | 13 # Like the target above, but without special commandline initialization that |
14 # apps use. | 14 # apps use. |
15 source_set("cpp_for_chromium") { | 15 source_set("cpp_for_chromium") { |
16 public_deps = [ | 16 public_deps = [ |
17 ":sources", | 17 ":sources", |
18 ] | 18 ] |
19 } | 19 } |
20 | 20 |
21 source_set("sources") { | 21 source_set("sources") { |
22 sources = [ | 22 sources = [ |
23 "app_lifetime_helper.h", | 23 "app_lifetime_helper.h", |
24 "application_impl.h", | |
25 "application_runner.h", | 24 "application_runner.h", |
26 "connect.h", | 25 "connect.h", |
27 "connection.h", | 26 "connection.h", |
28 "initialize_base_and_icu.cc", | 27 "initialize_base_and_icu.cc", |
29 "interface_factory.h", | 28 "interface_factory.h", |
30 "interface_factory_impl.h", | 29 "interface_factory_impl.h", |
31 "lib/app_lifetime_helper.cc", | 30 "lib/app_lifetime_helper.cc", |
32 "lib/application_impl.cc", | |
33 "lib/application_runner.cc", | 31 "lib/application_runner.cc", |
34 "lib/connection_impl.cc", | 32 "lib/connection_impl.cc", |
35 "lib/connection_impl.h", | 33 "lib/connection_impl.h", |
36 "lib/interface_factory_connector.h", | 34 "lib/interface_factory_connector.h", |
37 "lib/shell_client.cc", | 35 "lib/shell_client.cc", |
| 36 "lib/shell_connection.cc", |
38 "service_connector.h", | 37 "service_connector.h", |
39 "shell.h", | 38 "shell.h", |
40 "shell_client.h", | 39 "shell_client.h", |
| 40 "shell_connection.h", |
41 ] | 41 ] |
42 | 42 |
43 deps = [ | 43 deps = [ |
44 "//base:i18n", | 44 "//base:i18n", |
45 "//mojo/common", | 45 "//mojo/common", |
46 "//mojo/converters/network", | 46 "//mojo/converters/network", |
47 "//mojo/environment:chromium", | 47 "//mojo/environment:chromium", |
48 "//mojo/message_pump", | 48 "//mojo/message_pump", |
49 ] | 49 ] |
50 | 50 |
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
99 "//mojo/public/cpp/environment", | 99 "//mojo/public/cpp/environment", |
100 "//mojo/public/cpp/system", | 100 "//mojo/public/cpp/system", |
101 "//mojo/shell/public/interfaces:interfaces_cpp_sources", | 101 "//mojo/shell/public/interfaces:interfaces_cpp_sources", |
102 ] | 102 ] |
103 | 103 |
104 data_deps = [] | 104 data_deps = [] |
105 if (is_android) { | 105 if (is_android) { |
106 data_deps += [ "//mojo/android" ] | 106 data_deps += [ "//mojo/android" ] |
107 } | 107 } |
108 } | 108 } |
OLD | NEW |