| 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 149 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 160 } | 160 } |
| 161 group("child") { | 161 group("child") { |
| 162 deps = [ | 162 deps = [ |
| 163 ":both", | 163 ":both", |
| 164 ] | 164 ] |
| 165 } | 165 } |
| 166 } | 166 } |
| 167 } | 167 } |
| 168 | 168 |
| 169 service_manifest("browser_manifest") { | 169 service_manifest("browser_manifest") { |
| 170 type = "exe" | |
| 171 name = "content_browser" | 170 name = "content_browser" |
| 172 source = "mojo/content_browser_manifest.json" | 171 source = "mojo/content_browser_manifest.json" |
| 173 packaged_services = [ | 172 packaged_services = [ |
| 174 "file", | 173 "file", |
| 175 "media", | 174 "media", |
| 176 ] | 175 ] |
| 177 deps = [ | 176 deps = [ |
| 178 "//media/mojo/services:media_manifest", | 177 "//media/mojo/services:media_manifest", |
| 179 "//services/file:manifest", | 178 "//services/file:manifest", |
| 180 ] | 179 ] |
| 181 } | 180 } |
| 182 | 181 |
| 183 service_manifest("gpu_manifest") { | 182 service_manifest("gpu_manifest") { |
| 184 type = "exe" | |
| 185 name = "content_gpu" | 183 name = "content_gpu" |
| 186 source = "mojo/content_gpu_manifest.json" | 184 source = "mojo/content_gpu_manifest.json" |
| 187 } | 185 } |
| 188 | 186 |
| 189 service_manifest("plugin_manifest") { | 187 service_manifest("plugin_manifest") { |
| 190 type = "exe" | |
| 191 name = "content_plugin" | 188 name = "content_plugin" |
| 192 source = "mojo/content_plugin_manifest.json" | 189 source = "mojo/content_plugin_manifest.json" |
| 193 } | 190 } |
| 194 | 191 |
| 195 service_manifest("renderer_manifest") { | 192 service_manifest("renderer_manifest") { |
| 196 type = "exe" | |
| 197 name = "content_renderer" | 193 name = "content_renderer" |
| 198 source = "mojo/content_renderer_manifest.json" | 194 source = "mojo/content_renderer_manifest.json" |
| 199 } | 195 } |
| 200 | 196 |
| 201 service_manifest("utility_manifest") { | 197 service_manifest("utility_manifest") { |
| 202 type = "exe" | |
| 203 name = "content_utility" | 198 name = "content_utility" |
| 204 source = "mojo/content_utility_manifest.json" | 199 source = "mojo/content_utility_manifest.json" |
| 205 } | 200 } |
| OLD | NEW |