| 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 138 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 149 packaged_applications = [ | 149 packaged_applications = [ |
| 150 "media", | 150 "media", |
| 151 "user", | 151 "user", |
| 152 ] | 152 ] |
| 153 deps = [ | 153 deps = [ |
| 154 "//media/mojo/services:media_manifest", | 154 "//media/mojo/services:media_manifest", |
| 155 "//services/user:manifest", | 155 "//services/user:manifest", |
| 156 ] | 156 ] |
| 157 } | 157 } |
| 158 | 158 |
| 159 mojo_application_manifest("gpu_manifest") { |
| 160 type = "exe" |
| 161 application_name = "content_gpu" |
| 162 source = "mojo/content_gpu_manifest.json" |
| 163 } |
| 164 |
| 159 mojo_application_manifest("renderer_manifest") { | 165 mojo_application_manifest("renderer_manifest") { |
| 160 type = "exe" | 166 type = "exe" |
| 161 application_name = "content_renderer" | 167 application_name = "content_renderer" |
| 162 source = "mojo/content_renderer_manifest.json" | 168 source = "mojo/content_renderer_manifest.json" |
| 163 } | 169 } |
| 164 | 170 |
| 165 mojo_application_manifest("gpu_manifest") { | 171 mojo_application_manifest("utility_manifest") { |
| 166 type = "exe" | 172 type = "exe" |
| 167 application_name = "content_gpu" | 173 application_name = "content_utility" |
| 168 source = "mojo/content_gpu_manifest.json" | 174 source = "mojo/content_utility_manifest.json" |
| 169 } | 175 } |
| OLD | NEW |