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

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

Issue 2653223003: Revert of Shape Detection: Implement FaceDetection on Mac as out-of-process service (Closed)
Patch Set: Created 3 years, 10 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 163 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 "//media/mojo/services:media_manifest", 181 "//media/mojo/services:media_manifest",
182 "//services/device:manifest", 182 "//services/device:manifest",
183 "//services/file:manifest", 183 "//services/file:manifest",
184 "//services/shape_detection:manifest",
185 ] 184 ]
186 } 185 }
187 186
188 service_manifest("gpu_manifest") { 187 service_manifest("gpu_manifest") {
189 name = "content_gpu" 188 name = "content_gpu"
190 source = "mojo/content_gpu_manifest.json" 189 source = "mojo/content_gpu_manifest.json"
191 } 190 }
192 191
193 service_manifest("plugin_manifest") { 192 service_manifest("plugin_manifest") {
194 name = "content_plugin" 193 name = "content_plugin"
195 source = "mojo/content_plugin_manifest.json" 194 source = "mojo/content_plugin_manifest.json"
196 } 195 }
197 196
198 service_manifest("renderer_manifest") { 197 service_manifest("renderer_manifest") {
199 name = "content_renderer" 198 name = "content_renderer"
200 source = "mojo/content_renderer_manifest.json" 199 source = "mojo/content_renderer_manifest.json"
201 } 200 }
202 201
203 service_manifest("utility_manifest") { 202 service_manifest("utility_manifest") {
204 name = "content_utility" 203 name = "content_utility"
205 source = "mojo/content_utility_manifest.json" 204 source = "mojo/content_utility_manifest.json"
206 } 205 }
OLDNEW
« no previous file with comments | « content/browser/shapedetection/shapedetection_browsertest.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