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("//build/config/ui.gni") | 5 import("//build/config/ui.gni") |
6 import("//mojo/public/mojo.gni") | 6 import("//mojo/public/mojo.gni") |
7 import("//mojo/public/tools/bindings/mojom.gni") | 7 import("//mojo/public/tools/bindings/mojom.gni") |
8 import("//testing/test.gni") | 8 import("//testing/test.gni") |
9 | 9 |
10 # We don't support building in the component build since mojo apps are | 10 # We don't support building in the component build since mojo apps are |
(...skipping 140 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
151 "data_pipe_peek.cc", | 151 "data_pipe_peek.cc", |
152 "data_pipe_peek.h", | 152 "data_pipe_peek.h", |
153 "dynamic_application_loader.cc", | 153 "dynamic_application_loader.cc", |
154 "dynamic_application_loader.h", | 154 "dynamic_application_loader.h", |
155 "external_application_listener.h", | 155 "external_application_listener.h", |
156 "external_application_listener.cc", | 156 "external_application_listener.cc", |
157 "filename_util.cc", | 157 "filename_util.cc", |
158 "filename_util.h", | 158 "filename_util.h", |
159 "incoming_connection_listener.cc", | 159 "incoming_connection_listener.cc", |
160 "incoming_connection_listener.h", | 160 "incoming_connection_listener.h", |
161 "mojo_url_resolver.cc", | |
162 "mojo_url_resolver.h", | |
163 "out_of_process_dynamic_service_runner.cc", | 161 "out_of_process_dynamic_service_runner.cc", |
164 "out_of_process_dynamic_service_runner.h", | 162 "out_of_process_dynamic_service_runner.h", |
| 163 "url_resolver.cc", |
| 164 "url_resolver.h", |
165 "switches.cc", | 165 "switches.cc", |
166 "switches.h", | 166 "switches.h", |
167 "task_runners.cc", | 167 "task_runners.cc", |
168 "task_runners.h", | 168 "task_runners.h", |
169 "test_child_process.cc", | 169 "test_child_process.cc", |
170 "test_child_process.h", | 170 "test_child_process.h", |
171 ] | 171 ] |
172 | 172 |
173 deps = [ | 173 deps = [ |
174 ":app_child_process_bindings", | 174 ":app_child_process_bindings", |
(...skipping 224 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
399 } | 399 } |
400 | 400 |
401 # GYP version: mojo/mojo.gyp:mojo_shell_tests | 401 # GYP version: mojo/mojo.gyp:mojo_shell_tests |
402 test("mojo_shell_tests") { | 402 test("mojo_shell_tests") { |
403 sources = [ | 403 sources = [ |
404 "child_process_host_unittest.cc", | 404 "child_process_host_unittest.cc", |
405 "command_line_util_unittest.cc", | 405 "command_line_util_unittest.cc", |
406 "data_pipe_peek_unittest.cc", | 406 "data_pipe_peek_unittest.cc", |
407 "dynamic_application_loader_unittest.cc", | 407 "dynamic_application_loader_unittest.cc", |
408 "in_process_dynamic_service_runner_unittest.cc", | 408 "in_process_dynamic_service_runner_unittest.cc", |
409 "mojo_url_resolver_unittest.cc", | |
410 "shell_test_base.cc", | 409 "shell_test_base.cc", |
411 "shell_test_base_android.cc", | 410 "shell_test_base_android.cc", |
412 "shell_test_base.h", | 411 "shell_test_base.h", |
413 "shell_test_base_unittest.cc", | 412 "shell_test_base_unittest.cc", |
414 "shell_test_main.cc", | 413 "shell_test_main.cc", |
| 414 "url_resolver_unittest.cc", |
415 ] | 415 ] |
416 | 416 |
417 deps = [ | 417 deps = [ |
418 ":in_process_dynamic_service_runner", | 418 ":in_process_dynamic_service_runner", |
419 ":lib", | 419 ":lib", |
420 "//base", | 420 "//base", |
421 "//base:i18n", | 421 "//base:i18n", |
422 "//base/test:test_support", | 422 "//base/test:test_support", |
423 "//testing/gtest", | 423 "//testing/gtest", |
424 "//net:test_support", | 424 "//net:test_support", |
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
498 | 498 |
499 deps -= [ | 499 deps -= [ |
500 ":lib", | 500 ":lib", |
501 ":external_application_registrar_connection", | 501 ":external_application_registrar_connection", |
502 ":external_application_registrar_bindings", | 502 ":external_application_registrar_bindings", |
503 "//shell/domain_socket", | 503 "//shell/domain_socket", |
504 "//shell/domain_socket:tests", | 504 "//shell/domain_socket:tests", |
505 ] | 505 ] |
506 } | 506 } |
507 } | 507 } |
OLD | NEW |