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 import("//mojo/public/tools/bindings/mojom.gni") | 5 import("//mojo/public/tools/bindings/mojom.gni") |
6 import("//build/config/ui.gni") | 6 import("//build/config/ui.gni") |
7 | 7 |
8 executable("mojo_shell") { | 8 executable("mojo_shell") { |
9 deps = [ | 9 deps = [ |
10 ":lib", | 10 ":lib", |
(...skipping 16 matching lines...) Expand all Loading... |
27 deps = [ | 27 deps = [ |
28 ":app_child_process_bindings", | 28 ":app_child_process_bindings", |
29 ":external_application_registrar_bindings", | 29 ":external_application_registrar_bindings", |
30 ":external_service_bindings", | 30 ":external_service_bindings", |
31 "//base", | 31 "//base", |
32 "//base/third_party/dynamic_annotations", | 32 "//base/third_party/dynamic_annotations", |
33 "//base:base_static", | 33 "//base:base_static", |
34 "//mojo/application", | 34 "//mojo/application", |
35 "//mojo/application_manager", | 35 "//mojo/application_manager", |
36 "//mojo/common", | 36 "//mojo/common", |
| 37 "//mojo/edk/system", |
37 "//mojo/gles2", | 38 "//mojo/gles2", |
38 "//mojo/public/interfaces/application", | 39 "//mojo/public/interfaces/application", |
39 "//mojo/services/public/interfaces/network", | 40 "//mojo/services/public/interfaces/network", |
40 "//mojo/spy", | 41 "//mojo/spy", |
41 "//mojo/system", | |
42 ] | 42 ] |
43 | 43 |
44 sources = [ | 44 sources = [ |
45 "app_child_process.cc", | 45 "app_child_process.cc", |
46 "app_child_process.h", | 46 "app_child_process.h", |
47 "app_child_process_host.cc", | 47 "app_child_process_host.cc", |
48 "app_child_process_host.h", | 48 "app_child_process_host.h", |
49 "child_process.cc", | 49 "child_process.cc", |
50 "child_process.h", | 50 "child_process.h", |
51 "child_process_host.cc", | 51 "child_process_host.cc", |
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
126 test("mojo_shell_tests") { | 126 test("mojo_shell_tests") { |
127 deps = [ | 127 deps = [ |
128 ":lib", | 128 ":lib", |
129 "//base", | 129 "//base", |
130 "//base:i18n", | 130 "//base:i18n", |
131 "//base/test:test_support", | 131 "//base/test:test_support", |
132 "//testing/gtest", | 132 "//testing/gtest", |
133 "//net:test_support", | 133 "//net:test_support", |
134 "//url", | 134 "//url", |
135 "//mojo/application_manager", | 135 "//mojo/application_manager", |
| 136 "//mojo/common", |
| 137 "//mojo/edk/system", |
| 138 "//mojo/environment:chromium", |
136 "//mojo/services/test_service:bindings", | 139 "//mojo/services/test_service:bindings", |
137 "//mojo/common", | |
138 "//mojo/environment:chromium", | |
139 "//mojo/system", | |
140 ] | 140 ] |
141 | 141 |
142 datadeps = [ | 142 datadeps = [ |
143 "//mojo/services/test_service:mojo_test_app", | 143 "//mojo/services/test_service:mojo_test_app", |
144 "//mojo/services/test_service:mojo_test_request_tracker_app", | 144 "//mojo/services/test_service:mojo_test_request_tracker_app", |
145 ] | 145 ] |
146 | 146 |
147 sources = [ | 147 sources = [ |
148 "child_process_host_unittest.cc", | 148 "child_process_host_unittest.cc", |
149 "dynamic_application_loader_unittest.cc", | 149 "dynamic_application_loader_unittest.cc", |
(...skipping 14 matching lines...) Expand all Loading... |
164 | 164 |
165 # GYP version: mojo/mojo.gyp:mojo_shell_test_support | 165 # GYP version: mojo/mojo.gyp:mojo_shell_test_support |
166 source_set("test_support") { | 166 source_set("test_support") { |
167 sources = [ | 167 sources = [ |
168 "shell_test_helper.cc", | 168 "shell_test_helper.cc", |
169 "shell_test_helper.h", | 169 "shell_test_helper.h", |
170 ] | 170 ] |
171 | 171 |
172 deps = [ | 172 deps = [ |
173 ":lib", | 173 ":lib", |
174 "//mojo/system", | 174 "//mojo/edk/system", |
175 ] | 175 ] |
176 } | 176 } |
177 | 177 |
178 # GYP version: mojo/mojo.gyp:external_application_tests | 178 # GYP version: mojo/mojo.gyp:external_application_tests |
179 test("mojo_external_application_tests") { | 179 test("mojo_external_application_tests") { |
180 deps = [ | 180 deps = [ |
181 ":lib", | 181 ":lib", |
182 ":external_application_registrar_connection", | 182 ":external_application_registrar_connection", |
183 "//base", | 183 "//base", |
184 "//base/test:test_support", | 184 "//base/test:test_support", |
185 "//testing/gtest", | 185 "//testing/gtest", |
186 "//net:test_support", | 186 "//net:test_support", |
187 "//url", | 187 "//url", |
188 "//mojo/application_manager", | 188 "//mojo/application_manager", |
189 "//mojo/common", | 189 "//mojo/common", |
| 190 "//mojo/edk/system", |
190 "//mojo/environment:chromium", | 191 "//mojo/environment:chromium", |
191 "//mojo/system", | |
192 ] | 192 ] |
193 | 193 |
194 sources = [ | 194 sources = [ |
195 "incoming_connection_listener_unittest.cc", | 195 "incoming_connection_listener_unittest.cc", |
196 "external_application_listener_unittest.cc", | 196 "external_application_listener_unittest.cc", |
197 "external_application_test_main.cc", | 197 "external_application_test_main.cc", |
198 ] | 198 ] |
199 } | 199 } |
OLD | NEW |