| 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("//mojo/public/tools/bindings/mojom.gni") | 5 import("//mojo/public/tools/bindings/mojom.gni") |
| 6 import("//build/config/ui.gni") | 6 import("//build/config/ui.gni") |
| 7 | 7 |
| 8 executable("mojo_shell") { | 8 executable("mojo_shell") { |
| 9 deps = [ | 9 deps = [ |
| 10 ":lib", | 10 ":lib", |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 48 "app_child_process_host.h", | 48 "app_child_process_host.h", |
| 49 "child_process.cc", | 49 "child_process.cc", |
| 50 "child_process.h", | 50 "child_process.h", |
| 51 "child_process_host.cc", | 51 "child_process_host.cc", |
| 52 "child_process_host.h", | 52 "child_process_host.h", |
| 53 "context.cc", | 53 "context.cc", |
| 54 "context.h", | 54 "context.h", |
| 55 "dynamic_application_loader.cc", | 55 "dynamic_application_loader.cc", |
| 56 "dynamic_application_loader.h", | 56 "dynamic_application_loader.h", |
| 57 "dynamic_service_runner.h", | 57 "dynamic_service_runner.h", |
| 58 "external_application_listener.h", |
| 58 "external_application_listener_posix.cc", | 59 "external_application_listener_posix.cc", |
| 59 "external_application_listener_win.cc", | 60 "external_application_listener_win.cc", |
| 60 "external_application_listener.h", | 61 "filename_util.cc", |
| 62 "filename_util.h", |
| 63 "in_process_dynamic_service_runner.cc", |
| 64 "in_process_dynamic_service_runner.h", |
| 61 "incoming_connection_listener_posix.cc", | 65 "incoming_connection_listener_posix.cc", |
| 62 "incoming_connection_listener_posix.h", | 66 "incoming_connection_listener_posix.h", |
| 63 "init.cc", | 67 "init.cc", |
| 64 "init.h", | 68 "init.h", |
| 65 "in_process_dynamic_service_runner.cc", | |
| 66 "in_process_dynamic_service_runner.h", | |
| 67 "mojo_url_resolver.cc", | 69 "mojo_url_resolver.cc", |
| 68 "mojo_url_resolver.h", | 70 "mojo_url_resolver.h", |
| 69 "out_of_process_dynamic_service_runner.cc", | 71 "out_of_process_dynamic_service_runner.cc", |
| 70 "out_of_process_dynamic_service_runner.h", | 72 "out_of_process_dynamic_service_runner.h", |
| 71 "switches.cc", | 73 "switches.cc", |
| 72 "switches.h", | 74 "switches.h", |
| 73 "task_runners.cc", | 75 "task_runners.cc", |
| 74 "task_runners.h", | 76 "task_runners.h", |
| 75 "test_child_process.cc", | 77 "test_child_process.cc", |
| 76 "test_child_process.h", | 78 "test_child_process.h", |
| (...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 190 "//mojo/edk/system", | 192 "//mojo/edk/system", |
| 191 "//mojo/environment:chromium", | 193 "//mojo/environment:chromium", |
| 192 ] | 194 ] |
| 193 | 195 |
| 194 sources = [ | 196 sources = [ |
| 195 "incoming_connection_listener_unittest.cc", | 197 "incoming_connection_listener_unittest.cc", |
| 196 "external_application_listener_unittest.cc", | 198 "external_application_listener_unittest.cc", |
| 197 "external_application_test_main.cc", | 199 "external_application_test_main.cc", |
| 198 ] | 200 ] |
| 199 } | 201 } |
| OLD | NEW |