| 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 # App different than the regular content subcomponents (see comments in | 5 # App different than the regular content subcomponents (see comments in |
| 6 # //content/BUILD.gn) because it has to support the browser/child process split | 6 # //content/BUILD.gn) because it has to support the browser/child process split |
| 7 # (the "both" target include both browser and child process files and is used | 7 # (the "both" target include both browser and child process files and is used |
| 8 # for testing). | 8 # for testing). |
| 9 # | 9 # |
| 10 # In non-component mode, browser, child, and both all follow the same structure: | 10 # In non-component mode, browser, child, and both all follow the same structure: |
| (...skipping 155 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 166 } | 166 } |
| 167 } | 167 } |
| 168 | 168 |
| 169 service_manifest("browser_manifest") { | 169 service_manifest("browser_manifest") { |
| 170 name = "content_browser" | 170 name = "content_browser" |
| 171 source = "mojo/content_browser_manifest.json" | 171 source = "mojo/content_browser_manifest.json" |
| 172 packaged_services = [ | 172 packaged_services = [ |
| 173 "device", | 173 "device", |
| 174 "file", | 174 "file", |
| 175 "media", | 175 "media", |
| 176 "test_ime_driver", |
| 177 "ui", |
| 178 "mus_demo", |
| 176 ] | 179 ] |
| 177 deps = [ | 180 deps = [ |
| 178 "//media/mojo/services:media_manifest", | 181 "//media/mojo/services:media_manifest", |
| 179 "//services/device:manifest", | 182 "//services/device:manifest", |
| 180 "//services/file:manifest", | 183 "//services/file:manifest", |
| 184 "//services/ui:manifest", |
| 185 "//services/ui/demo:manifest", |
| 186 "//services/ui/ime/test_ime_driver:manifest", |
| 181 ] | 187 ] |
| 182 } | 188 } |
| 183 | 189 |
| 184 service_manifest("gpu_manifest") { | 190 service_manifest("gpu_manifest") { |
| 185 name = "content_gpu" | 191 name = "content_gpu" |
| 186 source = "mojo/content_gpu_manifest.json" | 192 source = "mojo/content_gpu_manifest.json" |
| 187 } | 193 } |
| 188 | 194 |
| 189 service_manifest("plugin_manifest") { | 195 service_manifest("plugin_manifest") { |
| 190 name = "content_plugin" | 196 name = "content_plugin" |
| 191 source = "mojo/content_plugin_manifest.json" | 197 source = "mojo/content_plugin_manifest.json" |
| 192 } | 198 } |
| 193 | 199 |
| 194 service_manifest("renderer_manifest") { | 200 service_manifest("renderer_manifest") { |
| 195 name = "content_renderer" | 201 name = "content_renderer" |
| 196 source = "mojo/content_renderer_manifest.json" | 202 source = "mojo/content_renderer_manifest.json" |
| 197 } | 203 } |
| 198 | 204 |
| 199 service_manifest("utility_manifest") { | 205 service_manifest("utility_manifest") { |
| 200 name = "content_utility" | 206 name = "content_utility" |
| 201 source = "mojo/content_utility_manifest.json" | 207 source = "mojo/content_utility_manifest.json" |
| 202 } | 208 } |
| OLD | NEW |