Chromium Code Reviews| 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 163 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 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 Loading... | |
| 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 } |
| OLD | NEW |