| 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 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 62 "context.h", | 62 "context.h", |
| 63 "dbus_application_loader_linux.cc", | 63 "dbus_application_loader_linux.cc", |
| 64 "dbus_application_loader_linux.h", | 64 "dbus_application_loader_linux.h", |
| 65 "dynamic_application_loader.cc", | 65 "dynamic_application_loader.cc", |
| 66 "dynamic_application_loader.h", | 66 "dynamic_application_loader.h", |
| 67 "dynamic_service_runner.h", | 67 "dynamic_service_runner.h", |
| 68 "init.cc", | 68 "init.cc", |
| 69 "init.h", | 69 "init.h", |
| 70 "in_process_dynamic_service_runner.cc", | 70 "in_process_dynamic_service_runner.cc", |
| 71 "in_process_dynamic_service_runner.h", | 71 "in_process_dynamic_service_runner.h", |
| 72 "keep_alive.cc", | |
| 73 "keep_alive.h", | |
| 74 "mojo_url_resolver.cc", | 72 "mojo_url_resolver.cc", |
| 75 "mojo_url_resolver.h", | 73 "mojo_url_resolver.h", |
| 76 "out_of_process_dynamic_service_runner.cc", | 74 "out_of_process_dynamic_service_runner.cc", |
| 77 "out_of_process_dynamic_service_runner.h", | 75 "out_of_process_dynamic_service_runner.h", |
| 78 "run.cc", | |
| 79 "run.h", | |
| 80 "switches.cc", | 76 "switches.cc", |
| 81 "switches.h", | 77 "switches.h", |
| 82 "task_runners.cc", | 78 "task_runners.cc", |
| 83 "task_runners.h", | 79 "task_runners.h", |
| 84 "test_child_process.cc", | 80 "test_child_process.cc", |
| 85 "test_child_process.h", | 81 "test_child_process.h", |
| 86 "ui_application_loader_android.cc", | 82 "ui_application_loader_android.cc", |
| 87 "ui_application_loader_android.h", | 83 "ui_application_loader_android.h", |
| 88 ] | 84 ] |
| 89 | 85 |
| (...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 174 | 170 |
| 175 deps = [ | 171 deps = [ |
| 176 ":lib", | 172 ":lib", |
| 177 "//base", | 173 "//base", |
| 178 "//base:base_static", | 174 "//base:base_static", |
| 179 "//mojo/application_manager", | 175 "//mojo/application_manager", |
| 180 "//mojo/system", | 176 "//mojo/system", |
| 181 "//url", | 177 "//url", |
| 182 ] | 178 ] |
| 183 } | 179 } |
| OLD | NEW |