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 160 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
171 ":both", | 171 ":both", |
172 ] | 172 ] |
173 } | 173 } |
174 } | 174 } |
175 } | 175 } |
176 | 176 |
177 service_manifest("browser_manifest") { | 177 service_manifest("browser_manifest") { |
178 name = "content_browser" | 178 name = "content_browser" |
179 source = "mojo/content_browser_manifest.json" | 179 source = "mojo/content_browser_manifest.json" |
180 packaged_services = [ | 180 packaged_services = [ |
| 181 "device", |
| 182 "file", |
| 183 "media", |
| 184 ] |
| 185 deps = [ |
181 "//media/mojo/services:media_manifest", | 186 "//media/mojo/services:media_manifest", |
182 "//services/device:manifest", | 187 "//services/device:manifest", |
183 "//services/file:manifest", | 188 "//services/file:manifest", |
184 ] | 189 ] |
185 } | 190 } |
186 | 191 |
187 service_manifest("gpu_manifest") { | 192 service_manifest("gpu_manifest") { |
188 name = "content_gpu" | 193 name = "content_gpu" |
189 source = "mojo/content_gpu_manifest.json" | 194 source = "mojo/content_gpu_manifest.json" |
190 } | 195 } |
191 | 196 |
192 service_manifest("plugin_manifest") { | 197 service_manifest("plugin_manifest") { |
193 name = "content_plugin" | 198 name = "content_plugin" |
194 source = "mojo/content_plugin_manifest.json" | 199 source = "mojo/content_plugin_manifest.json" |
195 } | 200 } |
196 | 201 |
197 service_manifest("renderer_manifest") { | 202 service_manifest("renderer_manifest") { |
198 name = "content_renderer" | 203 name = "content_renderer" |
199 source = "mojo/content_renderer_manifest.json" | 204 source = "mojo/content_renderer_manifest.json" |
200 } | 205 } |
201 | 206 |
202 service_manifest("utility_manifest") { | 207 service_manifest("utility_manifest") { |
203 name = "content_utility" | 208 name = "content_utility" |
204 source = "mojo/content_utility_manifest.json" | 209 source = "mojo/content_utility_manifest.json" |
205 } | 210 } |
OLD | NEW |