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 208 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
360 | 362 |
361 if (is_win) { | 363 if (is_win) { |
362 deps -= [ "//shell/domain_socket" ] | 364 deps -= [ "//shell/domain_socket" ] |
363 } | 365 } |
364 } | 366 } |
365 | 367 |
366 # GYP version: mojo/mojo.gyp:mojo_shell_tests | 368 # GYP version: mojo/mojo.gyp:mojo_shell_tests |
367 test("mojo_shell_tests") { | 369 test("mojo_shell_tests") { |
368 sources = [ | 370 sources = [ |
369 "child_process_host_unittest.cc", | 371 "child_process_host_unittest.cc", |
| 372 "command_line_util_unittest.cc", |
370 "data_pipe_peek_unittest.cc", | 373 "data_pipe_peek_unittest.cc", |
371 "dynamic_application_loader_unittest.cc", | 374 "dynamic_application_loader_unittest.cc", |
372 "in_process_dynamic_service_runner_unittest.cc", | 375 "in_process_dynamic_service_runner_unittest.cc", |
373 "mojo_url_resolver_unittest.cc", | 376 "mojo_url_resolver_unittest.cc", |
374 "shell_test_base.cc", | 377 "shell_test_base.cc", |
375 "shell_test_base.h", | 378 "shell_test_base.h", |
376 "shell_test_base_unittest.cc", | 379 "shell_test_base_unittest.cc", |
377 "shell_test_main.cc", | 380 "shell_test_main.cc", |
378 ] | 381 ] |
379 | 382 |
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
457 | 460 |
458 deps -= [ | 461 deps -= [ |
459 ":lib", | 462 ":lib", |
460 ":external_application_registrar_connection", | 463 ":external_application_registrar_connection", |
461 ":external_application_registrar_bindings", | 464 ":external_application_registrar_bindings", |
462 "//shell/domain_socket", | 465 "//shell/domain_socket", |
463 "//shell/domain_socket:tests", | 466 "//shell/domain_socket:tests", |
464 ] | 467 ] |
465 } | 468 } |
466 } | 469 } |
OLD | NEW |