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

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: Fix mojo::MakeRequest(&device) happening after base::Passed(&device). 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 168 matching lines...) Expand 10 before | Expand all | Expand 10 after
179 179
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/shape_detection:manifest", 188 "//services/shape_detection:manifest",
189 "//services/video_capture:manifest",
189 ] 190 ]
190 } 191 }
191 192
192 service_manifest("browser_manifest") { 193 service_manifest("browser_manifest") {
193 name = "content_browser" 194 name = "content_browser"
194 source = "mojo/content_browser_manifest.json" 195 source = "mojo/content_browser_manifest.json"
195 packaged_services = [ "//services/file:manifest" ] 196 packaged_services = [ "//services/file:manifest" ]
196 } 197 }
197 198
198 service_manifest("gpu_manifest") { 199 service_manifest("gpu_manifest") {
199 name = "content_gpu" 200 name = "content_gpu"
200 source = "mojo/content_gpu_manifest.json" 201 source = "mojo/content_gpu_manifest.json"
201 } 202 }
202 203
203 service_manifest("plugin_manifest") { 204 service_manifest("plugin_manifest") {
204 name = "content_plugin" 205 name = "content_plugin"
205 source = "mojo/content_plugin_manifest.json" 206 source = "mojo/content_plugin_manifest.json"
206 } 207 }
207 208
208 service_manifest("renderer_manifest") { 209 service_manifest("renderer_manifest") {
209 name = "content_renderer" 210 name = "content_renderer"
210 source = "mojo/content_renderer_manifest.json" 211 source = "mojo/content_renderer_manifest.json"
211 } 212 }
212 213
213 service_manifest("utility_manifest") { 214 service_manifest("utility_manifest") {
214 name = "content_utility" 215 name = "content_utility"
215 source = "mojo/content_utility_manifest.json" 216 source = "mojo/content_utility_manifest.json"
216 } 217 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698