Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1)

Side by Side Diff: content/public/app/BUILD.gn

Issue 2431753002: Mus experiment in content shell on Android.
Patch Set: Addressed comments, fixed browser tests and deps. Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 154 matching lines...) Expand 10 before | Expand all | Expand 10 after
165 } 165 }
166 } 166 }
167 } 167 }
168 168
169 service_manifest("browser_manifest") { 169 service_manifest("browser_manifest") {
170 name = "content_browser" 170 name = "content_browser"
171 source = "mojo/content_browser_manifest.json" 171 source = "mojo/content_browser_manifest.json"
172 packaged_services = [ 172 packaged_services = [
173 "file", 173 "file",
174 "media", 174 "media",
175 "test_ime_driver",
176 "tracing",
177 "ui",
175 ] 178 ]
176 deps = [ 179 deps = [
177 "//media/mojo/services:media_manifest", 180 "//media/mojo/services:media_manifest",
178 "//services/file:manifest", 181 "//services/file:manifest",
182 "//services/tracing:manifest",
183 "//services/ui:manifest",
184 "//services/ui/ime/test_ime_driver:manifest",
sadrul 2016/10/19 13:53:43 I don't know if this is the right place for it. I
Jay Civelli 2016/11/02 22:02:17 I believe packaged services have to be listed here
179 ] 185 ]
180 } 186 }
181 187
182 service_manifest("gpu_manifest") { 188 service_manifest("gpu_manifest") {
183 name = "content_gpu" 189 name = "content_gpu"
184 source = "mojo/content_gpu_manifest.json" 190 source = "mojo/content_gpu_manifest.json"
185 } 191 }
186 192
187 service_manifest("plugin_manifest") { 193 service_manifest("plugin_manifest") {
188 name = "content_plugin" 194 name = "content_plugin"
189 source = "mojo/content_plugin_manifest.json" 195 source = "mojo/content_plugin_manifest.json"
190 } 196 }
191 197
192 service_manifest("renderer_manifest") { 198 service_manifest("renderer_manifest") {
193 name = "content_renderer" 199 name = "content_renderer"
194 source = "mojo/content_renderer_manifest.json" 200 source = "mojo/content_renderer_manifest.json"
195 } 201 }
196 202
197 service_manifest("utility_manifest") { 203 service_manifest("utility_manifest") {
198 name = "content_utility" 204 name = "content_utility"
199 source = "mojo/content_utility_manifest.json" 205 source = "mojo/content_utility_manifest.json"
200 } 206 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698