| 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 160 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 171 ":both", | 171 ":both", |
| 172 ] | 172 ] |
| 173 } | 173 } |
| 174 } | 174 } |
| 175 } | 175 } |
| 176 | 176 |
| 177 service_manifest("packaged_services_manifest") { | 177 service_manifest("packaged_services_manifest") { |
| 178 name = "content_packaged_services" | 178 name = "content_packaged_services" |
| 179 source = "mojo/content_packaged_services_manifest.json" | 179 source = "mojo/content_packaged_services_manifest.json" |
| 180 packaged_services = [ | 180 packaged_services = [ |
| 181 "//components/printing/service:pdf_compositor_manifest", |
| 181 "//content/network:manifest", | 182 "//content/network:manifest", |
| 182 "//media/mojo/services:media_manifest", | 183 "//media/mojo/services:media_manifest", |
| 183 "//services/data_decoder:manifest", | 184 "//services/data_decoder:manifest", |
| 184 "//services/device:manifest", | 185 "//services/device:manifest", |
| 185 "//services/shape_detection:manifest", | 186 "//services/shape_detection:manifest", |
| 186 ] | 187 ] |
| 187 } | 188 } |
| 188 | 189 |
| 189 service_manifest("browser_manifest") { | 190 service_manifest("browser_manifest") { |
| 190 name = "content_browser" | 191 name = "content_browser" |
| (...skipping 13 matching lines...) Expand all Loading... |
| 204 | 205 |
| 205 service_manifest("renderer_manifest") { | 206 service_manifest("renderer_manifest") { |
| 206 name = "content_renderer" | 207 name = "content_renderer" |
| 207 source = "mojo/content_renderer_manifest.json" | 208 source = "mojo/content_renderer_manifest.json" |
| 208 } | 209 } |
| 209 | 210 |
| 210 service_manifest("utility_manifest") { | 211 service_manifest("utility_manifest") { |
| 211 name = "content_utility" | 212 name = "content_utility" |
| 212 source = "mojo/content_utility_manifest.json" | 213 source = "mojo/content_utility_manifest.json" |
| 213 } | 214 } |
| OLD | NEW |