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

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

Issue 2832633002: Add PDF compositor service (Closed)
Patch Set: rebase again 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 163 matching lines...) Expand 10 before | Expand all | Expand 10 after
174 ":both", 174 ":both",
175 ] 175 ]
176 } 176 }
177 } 177 }
178 } 178 }
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 "//components/printing/service:pdf_compositor_manifest",
Lei Zhang 2017/04/27 22:42:21 Can this be moved into chrome/ now?
Wei Li 2017/04/29 04:35:18 Yep, done in the following patch.
184 "//content/network:manifest", 185 "//content/network:manifest",
185 "//media/mojo/services:media_manifest", 186 "//media/mojo/services:media_manifest",
186 "//services/data_decoder:manifest", 187 "//services/data_decoder:manifest",
187 "//services/device:manifest", 188 "//services/device:manifest",
188 "//services/shape_detection:manifest", 189 "//services/shape_detection: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"
(...skipping 13 matching lines...) Expand all
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