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 159 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
170 } | 170 } |
171 } | 171 } |
172 } | 172 } |
173 | 173 |
174 service_manifest("browser_manifest") { | 174 service_manifest("browser_manifest") { |
175 name = "content_browser" | 175 name = "content_browser" |
176 source = "mojo/content_browser_manifest.json" | 176 source = "mojo/content_browser_manifest.json" |
177 packaged_services = [ | 177 packaged_services = [ |
178 "device", | 178 "device", |
179 "file", | 179 "file", |
180 "media", | |
alokp
2016/12/14 05:46:16
should we make it conditional upon mojo_media_host
slan
2016/12/19 17:58:18
Sure, that makes sense.
slan
2016/12/19 18:34:06
OK, I decided to keep this as-is for now. This doe
| |
181 ] | 180 ] |
182 deps = [ | 181 deps = [ |
183 "//media/mojo/services:media_manifest", | |
184 "//services/device:manifest", | 182 "//services/device:manifest", |
185 "//services/file:manifest", | 183 "//services/file:manifest", |
186 ] | 184 ] |
187 } | 185 } |
188 | 186 |
189 service_manifest("gpu_manifest") { | 187 service_manifest("gpu_manifest") { |
190 name = "content_gpu" | 188 name = "content_gpu" |
191 source = "mojo/content_gpu_manifest.json" | 189 source = "mojo/content_gpu_manifest.json" |
192 } | 190 } |
193 | 191 |
194 service_manifest("plugin_manifest") { | 192 service_manifest("plugin_manifest") { |
195 name = "content_plugin" | 193 name = "content_plugin" |
196 source = "mojo/content_plugin_manifest.json" | 194 source = "mojo/content_plugin_manifest.json" |
197 } | 195 } |
198 | 196 |
199 service_manifest("renderer_manifest") { | 197 service_manifest("renderer_manifest") { |
200 name = "content_renderer" | 198 name = "content_renderer" |
201 source = "mojo/content_renderer_manifest.json" | 199 source = "mojo/content_renderer_manifest.json" |
202 } | 200 } |
203 | 201 |
204 service_manifest("utility_manifest") { | 202 service_manifest("utility_manifest") { |
205 name = "content_utility" | 203 name = "content_utility" |
206 source = "mojo/content_utility_manifest.json" | 204 source = "mojo/content_utility_manifest.json" |
207 } | 205 } |
OLD | NEW |