| 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 17 matching lines...) Expand all Loading... |
| 28 } | 28 } |
| 29 | 29 |
| 30 # GYP version: mojo/mojo.gyp:mojo_shell_lib | 30 # GYP version: mojo/mojo.gyp:mojo_shell_lib |
| 31 source_set("lib") { | 31 source_set("lib") { |
| 32 deps = [ | 32 deps = [ |
| 33 ":app_child_process_bindings", | 33 ":app_child_process_bindings", |
| 34 ":external_service_bindings", | 34 ":external_service_bindings", |
| 35 "//base", | 35 "//base", |
| 36 "//base/third_party/dynamic_annotations", | 36 "//base/third_party/dynamic_annotations", |
| 37 "//base:base_static", | 37 "//base:base_static", |
| 38 "//mojo/application", |
| 38 "//mojo/application_manager", | 39 "//mojo/application_manager", |
| 39 "//mojo/common", | 40 "//mojo/common", |
| 40 "//mojo/gles2", | 41 "//mojo/gles2", |
| 41 "//mojo/public/cpp/application:chromium", | |
| 42 "//mojo/public/interfaces/application", | 42 "//mojo/public/interfaces/application", |
| 43 "//mojo/services/native_viewport", | 43 "//mojo/services/native_viewport", |
| 44 "//mojo/services/public/interfaces/native_viewport", | 44 "//mojo/services/public/interfaces/native_viewport", |
| 45 "//mojo/services/public/interfaces/network", | 45 "//mojo/services/public/interfaces/network", |
| 46 "//mojo/spy", | 46 "//mojo/spy", |
| 47 "//mojo/system", | 47 "//mojo/system", |
| 48 "//net", | 48 "//net", |
| 49 "//url", | 49 "//url", |
| 50 ] | 50 ] |
| 51 | 51 |
| (...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 170 | 170 |
| 171 deps = [ | 171 deps = [ |
| 172 ":lib", | 172 ":lib", |
| 173 "//base", | 173 "//base", |
| 174 "//base:base_static", | 174 "//base:base_static", |
| 175 "//mojo/application_manager", | 175 "//mojo/application_manager", |
| 176 "//mojo/system", | 176 "//mojo/system", |
| 177 "//url", | 177 "//url", |
| 178 ] | 178 ] |
| 179 } | 179 } |
| OLD | NEW |