| 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/mojo_application.gni") | 7 import("//mojo/public/mojo_application.gni") |
| 8 import("//mojo/public/tools/bindings/mojom.gni") | 8 import("//mojo/public/tools/bindings/mojom.gni") |
| 9 import("//mojo/tools/embed/rules.gni") | 9 import("//mojo/tools/embed/rules.gni") |
| 10 import("//testing/test.gni") | 10 import("//testing/test.gni") |
| (...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 146 "external_application_listener.cc", | 146 "external_application_listener.cc", |
| 147 "external_application_listener.h", | 147 "external_application_listener.h", |
| 148 "filename_util.cc", | 148 "filename_util.cc", |
| 149 "filename_util.h", | 149 "filename_util.h", |
| 150 "incoming_connection_listener.cc", | 150 "incoming_connection_listener.cc", |
| 151 "incoming_connection_listener.h", | 151 "incoming_connection_listener.h", |
| 152 "out_of_process_native_runner.cc", | 152 "out_of_process_native_runner.cc", |
| 153 "out_of_process_native_runner.h", | 153 "out_of_process_native_runner.h", |
| 154 "task_runners.cc", | 154 "task_runners.cc", |
| 155 "task_runners.h", | 155 "task_runners.h", |
| 156 "test_child_process.cc", | |
| 157 "test_child_process.h", | |
| 158 "url_resolver.cc", | 156 "url_resolver.cc", |
| 159 "url_resolver.h", | 157 "url_resolver.h", |
| 160 ] | 158 ] |
| 161 | 159 |
| 162 deps = [ | 160 deps = [ |
| 163 ":app_child_process_bindings", | 161 ":app_child_process_bindings", |
| 164 ":external_application_registrar_bindings", | 162 ":external_application_registrar_bindings", |
| 165 ":init", | 163 ":init", |
| 166 ":in_process_native_runner", | 164 ":in_process_native_runner", |
| 167 ":native_application_support", | 165 ":native_application_support", |
| (...skipping 256 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 424 ] | 422 ] |
| 425 | 423 |
| 426 if (is_win) { | 424 if (is_win) { |
| 427 deps -= [ "//shell/domain_socket" ] | 425 deps -= [ "//shell/domain_socket" ] |
| 428 } | 426 } |
| 429 } | 427 } |
| 430 | 428 |
| 431 # GYP version: mojo/mojo.gyp:mojo_shell_tests | 429 # GYP version: mojo/mojo.gyp:mojo_shell_tests |
| 432 test("mojo_shell_tests") { | 430 test("mojo_shell_tests") { |
| 433 sources = [ | 431 sources = [ |
| 434 "child_process_host_unittest.cc", | 432 "app_child_process_host_unittest.cc", |
| 435 "command_line_util_unittest.cc", | 433 "command_line_util_unittest.cc", |
| 436 "data_pipe_peek_unittest.cc", | 434 "data_pipe_peek_unittest.cc", |
| 437 "in_process_native_runner_unittest.cc", | 435 "in_process_native_runner_unittest.cc", |
| 438 "native_runner_unittest.cc", | 436 "native_runner_unittest.cc", |
| 439 "shell_test_base.cc", | 437 "shell_test_base.cc", |
| 440 "shell_test_base.h", | 438 "shell_test_base.h", |
| 441 "shell_test_base_android.cc", | 439 "shell_test_base_android.cc", |
| 442 "shell_test_base_unittest.cc", | 440 "shell_test_base_unittest.cc", |
| 443 "shell_test_main.cc", | 441 "shell_test_main.cc", |
| 444 "url_resolver_unittest.cc", | 442 "url_resolver_unittest.cc", |
| (...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 566 "//mojo/public/cpp/system:system", | 564 "//mojo/public/cpp/system:system", |
| 567 "//mojo/services/http_server/public/cpp", | 565 "//mojo/services/http_server/public/cpp", |
| 568 "//mojo/services/http_server/public/interfaces", | 566 "//mojo/services/http_server/public/interfaces", |
| 569 "//mojo/services/network/public/interfaces", | 567 "//mojo/services/network/public/interfaces", |
| 570 "//shell/test:bindings", | 568 "//shell/test:bindings", |
| 571 ":embed_pingable", | 569 ":embed_pingable", |
| 572 ] | 570 ] |
| 573 | 571 |
| 574 data_deps = [ "//services/http_server:http_server($default_toolchain)" ] | 572 data_deps = [ "//services/http_server:http_server($default_toolchain)" ] |
| 575 } | 573 } |
| OLD | NEW |