| 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 128 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 139 ":both", | 139 ":both", |
| 140 ] | 140 ] |
| 141 } | 141 } |
| 142 } | 142 } |
| 143 } | 143 } |
| 144 | 144 |
| 145 mojo_application_manifest("browser_manifest") { | 145 mojo_application_manifest("browser_manifest") { |
| 146 type = "exe" | 146 type = "exe" |
| 147 application_name = "content_browser" | 147 application_name = "content_browser" |
| 148 source = "mojo/content_browser_manifest.json" | 148 source = "mojo/content_browser_manifest.json" |
| 149 packaged_applications = [ "profile" ] |
| 150 deps = [ |
| 151 "//components/profile_service:manifest", |
| 152 ] |
| 149 } | 153 } |
| 150 | 154 |
| 151 mojo_application_manifest("renderer_manifest") { | 155 mojo_application_manifest("renderer_manifest") { |
| 152 type = "exe" | 156 type = "exe" |
| 153 application_name = "content_renderer" | 157 application_name = "content_renderer" |
| 154 source = "mojo/content_renderer_manifest.json" | 158 source = "mojo/content_renderer_manifest.json" |
| 155 } | 159 } |
| OLD | NEW |