| 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 115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 126 | 126 |
| 127 deps = [ | 127 deps = [ |
| 128 "//base", | 128 "//base", |
| 129 ] | 129 ] |
| 130 } | 130 } |
| 131 | 131 |
| 132 source_set("lib") { | 132 source_set("lib") { |
| 133 sources = [ | 133 sources = [ |
| 134 "app_child_process.cc", | 134 "app_child_process.cc", |
| 135 "app_child_process.h", | 135 "app_child_process.h", |
| 136 "app_child_process_host.cc", | |
| 137 "app_child_process_host.h", | |
| 138 "child_process.cc", | 136 "child_process.cc", |
| 139 "child_process.h", | 137 "child_process.h", |
| 140 "child_process_host.cc", | 138 "child_process_host.cc", |
| 141 "child_process_host.h", | 139 "child_process_host.h", |
| 142 "command_line_util.cc", | 140 "command_line_util.cc", |
| 143 "command_line_util.h", | 141 "command_line_util.h", |
| 144 "context.cc", | 142 "context.cc", |
| 145 "context.h", | 143 "context.h", |
| 146 "external_application_listener.cc", | 144 "external_application_listener.cc", |
| 147 "external_application_listener.h", | 145 "external_application_listener.h", |
| (...skipping 274 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 422 ] | 420 ] |
| 423 | 421 |
| 424 if (is_win) { | 422 if (is_win) { |
| 425 deps -= [ "//shell/domain_socket" ] | 423 deps -= [ "//shell/domain_socket" ] |
| 426 } | 424 } |
| 427 } | 425 } |
| 428 | 426 |
| 429 # GYP version: mojo/mojo.gyp:mojo_shell_tests | 427 # GYP version: mojo/mojo.gyp:mojo_shell_tests |
| 430 test("mojo_shell_tests") { | 428 test("mojo_shell_tests") { |
| 431 sources = [ | 429 sources = [ |
| 432 "app_child_process_host_unittest.cc", | 430 "child_process_host_unittest.cc", |
| 433 "command_line_util_unittest.cc", | 431 "command_line_util_unittest.cc", |
| 434 "data_pipe_peek_unittest.cc", | 432 "data_pipe_peek_unittest.cc", |
| 435 "in_process_native_runner_unittest.cc", | 433 "in_process_native_runner_unittest.cc", |
| 436 "native_runner_unittest.cc", | 434 "native_runner_unittest.cc", |
| 437 "shell_test_base.cc", | 435 "shell_test_base.cc", |
| 438 "shell_test_base.h", | 436 "shell_test_base.h", |
| 439 "shell_test_base_android.cc", | 437 "shell_test_base_android.cc", |
| 440 "shell_test_base_unittest.cc", | 438 "shell_test_base_unittest.cc", |
| 441 "shell_test_main.cc", | 439 "shell_test_main.cc", |
| 442 "url_resolver_unittest.cc", | 440 "url_resolver_unittest.cc", |
| (...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 564 "//mojo/public/cpp/system:system", | 562 "//mojo/public/cpp/system:system", |
| 565 "//mojo/services/http_server/public/cpp", | 563 "//mojo/services/http_server/public/cpp", |
| 566 "//mojo/services/http_server/public/interfaces", | 564 "//mojo/services/http_server/public/interfaces", |
| 567 "//mojo/services/network/public/interfaces", | 565 "//mojo/services/network/public/interfaces", |
| 568 "//shell/test:bindings", | 566 "//shell/test:bindings", |
| 569 ":embed_pingable", | 567 ":embed_pingable", |
| 570 ] | 568 ] |
| 571 | 569 |
| 572 data_deps = [ "//services/http_server:http_server($default_toolchain)" ] | 570 data_deps = [ "//services/http_server:http_server($default_toolchain)" ] |
| 573 } | 571 } |
| OLD | NEW |