| 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 source_set("lib") { | 29 source_set("lib") { |
| 30 deps = [ | 30 deps = [ |
| 31 ":app_child_process_bindings", | 31 ":app_child_process_bindings", |
| 32 ":external_service_bindings", | 32 ":external_service_bindings", |
| 33 "//base", | 33 "//base", |
| 34 "//base/third_party/dynamic_annotations", | 34 "//base/third_party/dynamic_annotations", |
| 35 "//base:base_static", | 35 "//base:base_static", |
| 36 "//mojo/common", | 36 "//mojo/common", |
| 37 "//mojo/gles2", | 37 "//mojo/gles2", |
| 38 "//mojo/public/cpp/application:chromium", | 38 "//mojo/public/cpp/application", |
| 39 "//mojo/public/interfaces/application", | 39 "//mojo/public/interfaces/application", |
| 40 "//mojo/service_manager", | 40 "//mojo/service_manager", |
| 41 "//mojo/services/native_viewport", | 41 "//mojo/services/native_viewport", |
| 42 "//mojo/services/public/interfaces/native_viewport", | 42 "//mojo/services/public/interfaces/native_viewport", |
| 43 "//mojo/services/public/interfaces/network", | 43 "//mojo/services/public/interfaces/network", |
| 44 "//mojo/spy", | 44 "//mojo/spy", |
| 45 "//mojo/system", | 45 "//mojo/system", |
| 46 "//net", | 46 "//net", |
| 47 "//url", | 47 "//url", |
| 48 ] | 48 ] |
| (...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 117 sources = [ | 117 sources = [ |
| 118 "app_child_process.mojom" | 118 "app_child_process.mojom" |
| 119 ] | 119 ] |
| 120 } | 120 } |
| 121 | 121 |
| 122 mojom("external_service_bindings") { | 122 mojom("external_service_bindings") { |
| 123 sources = [ | 123 sources = [ |
| 124 "external_service.mojom" | 124 "external_service.mojom" |
| 125 ] | 125 ] |
| 126 } | 126 } |
| OLD | NEW |