| 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("//testing/test.gni") | 9 import("//testing/test.gni") |
| 10 | 10 |
| (...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 84 | 84 |
| 85 executable("mojo_launcher") { | 85 executable("mojo_launcher") { |
| 86 sources = [ | 86 sources = [ |
| 87 "launcher_main.cc", | 87 "launcher_main.cc", |
| 88 ] | 88 ] |
| 89 | 89 |
| 90 deps = [ | 90 deps = [ |
| 91 ":external_application_registrar_bindings", | 91 ":external_application_registrar_bindings", |
| 92 ":external_application_registrar_connection", | 92 ":external_application_registrar_connection", |
| 93 ":init", | 93 ":init", |
| 94 ":in_process_dynamic_service_runner", | 94 ":in_process_native_runner", |
| 95 "//base", | 95 "//base", |
| 96 "//build/config/sanitizers:deps", | 96 "//build/config/sanitizers:deps", |
| 97 "//mojo/common", | 97 "//mojo/common", |
| 98 "//mojo/edk/system", | 98 "//mojo/edk/system", |
| 99 "//mojo/environment:chromium", | 99 "//mojo/environment:chromium", |
| 100 "//url", | 100 "//url", |
| 101 ] | 101 ] |
| 102 } | 102 } |
| 103 | 103 |
| 104 source_set("init") { | 104 source_set("init") { |
| 105 sources = [ | 105 sources = [ |
| 106 "init.cc", | 106 "init.cc", |
| 107 "init.h", | 107 "init.h", |
| 108 ] | 108 ] |
| 109 | 109 |
| 110 deps = [ | 110 deps = [ |
| 111 "//base", | 111 "//base", |
| 112 ] | 112 ] |
| 113 } | 113 } |
| 114 | 114 |
| 115 source_set("in_process_dynamic_service_runner") { | 115 source_set("in_process_native_runner") { |
| 116 sources = [ | 116 sources = [ |
| 117 "dynamic_service_runner.cc", | 117 "dynamic_service_runner.cc", |
| 118 "dynamic_service_runner.h", | 118 "dynamic_service_runner.h", |
| 119 "in_process_dynamic_service_runner.cc", | 119 "in_process_native_runner.cc", |
| 120 "in_process_dynamic_service_runner.h", | 120 "in_process_native_runner.h", |
| 121 ] | 121 ] |
| 122 | 122 |
| 123 public_deps = [ | 123 public_deps = [ |
| 124 "//shell/application_manager:application_manager", | 124 "//shell/application_manager:application_manager", |
| 125 ] | 125 ] |
| 126 | 126 |
| 127 deps = [ | 127 deps = [ |
| 128 "//base", | 128 "//base", |
| 129 "//mojo/gles2", | 129 "//mojo/gles2", |
| 130 "//mojo/public/cpp/system", | 130 "//mojo/public/cpp/system", |
| (...skipping 21 matching lines...) Expand all Loading... |
| 152 "command_line_util.cc", | 152 "command_line_util.cc", |
| 153 "command_line_util.h", | 153 "command_line_util.h", |
| 154 "context.cc", | 154 "context.cc", |
| 155 "context.h", | 155 "context.h", |
| 156 "external_application_listener.h", | 156 "external_application_listener.h", |
| 157 "external_application_listener.cc", | 157 "external_application_listener.cc", |
| 158 "filename_util.cc", | 158 "filename_util.cc", |
| 159 "filename_util.h", | 159 "filename_util.h", |
| 160 "incoming_connection_listener.cc", | 160 "incoming_connection_listener.cc", |
| 161 "incoming_connection_listener.h", | 161 "incoming_connection_listener.h", |
| 162 "out_of_process_dynamic_service_runner.cc", | 162 "out_of_process_native_runner.cc", |
| 163 "out_of_process_dynamic_service_runner.h", | 163 "out_of_process_native_runner.h", |
| 164 "url_resolver.cc", | 164 "url_resolver.cc", |
| 165 "url_resolver.h", | 165 "url_resolver.h", |
| 166 "switches.cc", | 166 "switches.cc", |
| 167 "switches.h", | 167 "switches.h", |
| 168 "task_runners.cc", | 168 "task_runners.cc", |
| 169 "task_runners.h", | 169 "task_runners.h", |
| 170 "test_child_process.cc", | 170 "test_child_process.cc", |
| 171 "test_child_process.h", | 171 "test_child_process.h", |
| 172 ] | 172 ] |
| 173 | 173 |
| 174 deps = [ | 174 deps = [ |
| 175 ":app_child_process_bindings", | 175 ":app_child_process_bindings", |
| 176 ":external_application_registrar_bindings", | 176 ":external_application_registrar_bindings", |
| 177 ":init", | 177 ":init", |
| 178 ":in_process_dynamic_service_runner", | 178 ":in_process_native_runner", |
| 179 "//base", | 179 "//base", |
| 180 "//base/third_party/dynamic_annotations", | 180 "//base/third_party/dynamic_annotations", |
| 181 "//base:base_static", | 181 "//base:base_static", |
| 182 "//mojo/application", | 182 "//mojo/application", |
| 183 "//mojo/common", | 183 "//mojo/common", |
| 184 "//mojo/common:tracing_impl", | 184 "//mojo/common:tracing_impl", |
| 185 "//mojo/edk/system", | 185 "//mojo/edk/system", |
| 186 "//mojo/public/cpp/bindings", | 186 "//mojo/public/cpp/bindings", |
| 187 "//mojo/public/interfaces/application", | 187 "//mojo/public/interfaces/application", |
| 188 "//mojo/services/network/public/interfaces", | 188 "//mojo/services/network/public/interfaces", |
| (...skipping 209 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 398 deps -= [ "//shell/domain_socket" ] | 398 deps -= [ "//shell/domain_socket" ] |
| 399 } | 399 } |
| 400 } | 400 } |
| 401 | 401 |
| 402 # GYP version: mojo/mojo.gyp:mojo_shell_tests | 402 # GYP version: mojo/mojo.gyp:mojo_shell_tests |
| 403 test("mojo_shell_tests") { | 403 test("mojo_shell_tests") { |
| 404 sources = [ | 404 sources = [ |
| 405 "child_process_host_unittest.cc", | 405 "child_process_host_unittest.cc", |
| 406 "command_line_util_unittest.cc", | 406 "command_line_util_unittest.cc", |
| 407 "data_pipe_peek_unittest.cc", | 407 "data_pipe_peek_unittest.cc", |
| 408 "in_process_dynamic_service_runner_unittest.cc", | 408 "in_process_native_runner_unittest.cc", |
| 409 "native_runner_unittest.cc", | 409 "native_runner_unittest.cc", |
| 410 "shell_test_base.cc", | 410 "shell_test_base.cc", |
| 411 "shell_test_base_android.cc", | 411 "shell_test_base_android.cc", |
| 412 "shell_test_base.h", | 412 "shell_test_base.h", |
| 413 "shell_test_base_unittest.cc", | 413 "shell_test_base_unittest.cc", |
| 414 "shell_test_main.cc", | 414 "shell_test_main.cc", |
| 415 "url_resolver_unittest.cc", | 415 "url_resolver_unittest.cc", |
| 416 ] | 416 ] |
| 417 | 417 |
| 418 deps = [ | 418 deps = [ |
| 419 ":in_process_dynamic_service_runner", | 419 ":in_process_native_runner", |
| 420 ":lib", | 420 ":lib", |
| 421 "//base", | 421 "//base", |
| 422 "//base:i18n", | 422 "//base:i18n", |
| 423 "//base/test:test_support", | 423 "//base/test:test_support", |
| 424 "//testing/gtest", | 424 "//testing/gtest", |
| 425 "//url", | 425 "//url", |
| 426 "//mojo/common", | 426 "//mojo/common", |
| 427 "//mojo/edk/system", | 427 "//mojo/edk/system", |
| 428 "//mojo/environment:chromium", | 428 "//mojo/environment:chromium", |
| 429 "//mojo/public/cpp/bindings", | 429 "//mojo/public/cpp/bindings", |
| (...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 528 "//services/http_server/public", | 528 "//services/http_server/public", |
| 529 "//services/http_server/public:util", | 529 "//services/http_server/public:util", |
| 530 "//shell/test:bindings", | 530 "//shell/test:bindings", |
| 531 ] | 531 ] |
| 532 | 532 |
| 533 data_deps = [ | 533 data_deps = [ |
| 534 "//services/http_server:http_server", | 534 "//services/http_server:http_server", |
| 535 "//shell/test:pingable_app", | 535 "//shell/test:pingable_app", |
| 536 ] | 536 ] |
| 537 } | 537 } |
| OLD | NEW |