Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(871)

Side by Side Diff: content/public/app/BUILD.gn

Issue 2867213004: [Mojo Video Capture] Hook up video capture service behind a feature flag (Closed)
Patch Set: Rebase to May 19th Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 169 matching lines...) Expand 10 before | Expand all | Expand 10 after
180 service_manifest("packaged_services_manifest") { 180 service_manifest("packaged_services_manifest") {
181 name = "content_packaged_services" 181 name = "content_packaged_services"
182 source = "mojo/content_packaged_services_manifest.json" 182 source = "mojo/content_packaged_services_manifest.json"
183 packaged_services = [ 183 packaged_services = [
184 "//content/network:manifest", 184 "//content/network:manifest",
185 "//media/mojo/services:media_manifest", 185 "//media/mojo/services:media_manifest",
186 "//services/data_decoder:manifest", 186 "//services/data_decoder:manifest",
187 "//services/device:manifest", 187 "//services/device:manifest",
188 "//services/resource_coordinator:manifest", 188 "//services/resource_coordinator:manifest",
189 "//services/shape_detection:manifest", 189 "//services/shape_detection:manifest",
190 "//services/video_capture:manifest",
190 ] 191 ]
191 } 192 }
192 193
193 service_manifest("browser_manifest") { 194 service_manifest("browser_manifest") {
194 name = "content_browser" 195 name = "content_browser"
195 source = "mojo/content_browser_manifest.json" 196 source = "mojo/content_browser_manifest.json"
196 packaged_services = [ "//services/file:manifest" ] 197 packaged_services = [ "//services/file:manifest" ]
197 } 198 }
198 199
199 service_manifest("gpu_manifest") { 200 service_manifest("gpu_manifest") {
200 name = "content_gpu" 201 name = "content_gpu"
201 source = "mojo/content_gpu_manifest.json" 202 source = "mojo/content_gpu_manifest.json"
202 } 203 }
203 204
204 service_manifest("plugin_manifest") { 205 service_manifest("plugin_manifest") {
205 name = "content_plugin" 206 name = "content_plugin"
206 source = "mojo/content_plugin_manifest.json" 207 source = "mojo/content_plugin_manifest.json"
207 } 208 }
208 209
209 service_manifest("renderer_manifest") { 210 service_manifest("renderer_manifest") {
210 name = "content_renderer" 211 name = "content_renderer"
211 source = "mojo/content_renderer_manifest.json" 212 source = "mojo/content_renderer_manifest.json"
212 } 213 }
213 214
214 service_manifest("utility_manifest") { 215 service_manifest("utility_manifest") {
215 name = "content_utility" 216 name = "content_utility"
216 source = "mojo/content_utility_manifest.json" 217 source = "mojo/content_utility_manifest.json"
217 } 218 }
OLDNEW
« no previous file with comments | « content/browser/utility_process_host_impl.cc ('k') | content/public/app/mojo/content_browser_manifest.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698