| 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 | 8 |
| 9 # We don't support building in the component build since mojo apps are | 9 # We don't support building in the component build since mojo apps are |
| 10 # inherently components. | 10 # inherently components. |
| (...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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", | 136 "app_child_process_host.cc", |
| 137 "app_child_process_host.h", | 137 "app_child_process_host.h", |
| 138 "child_process.cc", | 138 "child_process.cc", |
| 139 "child_process.h", | 139 "child_process.h", |
| 140 "child_process_host.cc", | 140 "child_process_host.cc", |
| 141 "child_process_host.h", | 141 "child_process_host.h", |
| 142 "command_line_util.cc", |
| 143 "command_line_util.h", |
| 142 "context.cc", | 144 "context.cc", |
| 143 "context.h", | 145 "context.h", |
| 144 "data_pipe_peek.cc", | 146 "data_pipe_peek.cc", |
| 145 "data_pipe_peek.h", | 147 "data_pipe_peek.h", |
| 146 "dynamic_application_loader.cc", | 148 "dynamic_application_loader.cc", |
| 147 "dynamic_application_loader.h", | 149 "dynamic_application_loader.h", |
| 148 "external_application_listener.h", | 150 "external_application_listener.h", |
| 149 "external_application_listener_posix.cc", | 151 "external_application_listener_posix.cc", |
| 150 "external_application_listener_win.cc", | 152 "external_application_listener_win.cc", |
| 151 "filename_util.cc", | 153 "filename_util.cc", |
| (...skipping 206 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 358 | 360 |
| 359 if (is_win) { | 361 if (is_win) { |
| 360 deps -= [ "//shell/domain_socket" ] | 362 deps -= [ "//shell/domain_socket" ] |
| 361 } | 363 } |
| 362 } | 364 } |
| 363 | 365 |
| 364 # GYP version: mojo/mojo.gyp:mojo_shell_tests | 366 # GYP version: mojo/mojo.gyp:mojo_shell_tests |
| 365 test("mojo_shell_tests") { | 367 test("mojo_shell_tests") { |
| 366 sources = [ | 368 sources = [ |
| 367 "child_process_host_unittest.cc", | 369 "child_process_host_unittest.cc", |
| 370 "command_line_util_unittest.cc", |
| 368 "data_pipe_peek_unittest.cc", | 371 "data_pipe_peek_unittest.cc", |
| 369 "dynamic_application_loader_unittest.cc", | 372 "dynamic_application_loader_unittest.cc", |
| 370 "in_process_dynamic_service_runner_unittest.cc", | 373 "in_process_dynamic_service_runner_unittest.cc", |
| 371 "mojo_url_resolver_unittest.cc", | 374 "mojo_url_resolver_unittest.cc", |
| 372 "shell_test_base.cc", | 375 "shell_test_base.cc", |
| 373 "shell_test_base.h", | 376 "shell_test_base.h", |
| 374 "shell_test_base_unittest.cc", | 377 "shell_test_base_unittest.cc", |
| 375 "shell_test_main.cc", | 378 "shell_test_main.cc", |
| 376 ] | 379 ] |
| 377 | 380 |
| (...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 453 | 456 |
| 454 deps -= [ | 457 deps -= [ |
| 455 ":lib", | 458 ":lib", |
| 456 ":external_application_registrar_connection", | 459 ":external_application_registrar_connection", |
| 457 ":external_application_registrar_bindings", | 460 ":external_application_registrar_bindings", |
| 458 "//shell/domain_socket", | 461 "//shell/domain_socket", |
| 459 "//shell/domain_socket:tests", | 462 "//shell/domain_socket:tests", |
| 460 ] | 463 ] |
| 461 } | 464 } |
| 462 } | 465 } |
| OLD | NEW |