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

Unified Diff: content/public/app/BUILD.gn

Issue 2164503006: Rename mojo_application GN templates to service* (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: . Created 4 years, 5 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/content.gyp ('k') | mash/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/public/app/BUILD.gn
diff --git a/content/public/app/BUILD.gn b/content/public/app/BUILD.gn
index 73e5d1e901c0a75a42b986283a77de6dd9e9acdf..9b29c2daea3ae441ad88e686094bd8a92727463f 100644
--- a/content/public/app/BUILD.gn
+++ b/content/public/app/BUILD.gn
@@ -21,7 +21,7 @@
# //content/public/app:both_sources (source set)
import("//build/config/chrome_build.gni")
-import("//mojo/public/mojo_application_manifest.gni")
+import("//services/shell/public/service_manifest.gni")
public_app_shared_sources = [
"content_jni_onload.h",
@@ -142,11 +142,11 @@ if (is_component_build) {
}
}
-mojo_application_manifest("browser_manifest") {
+service_manifest("browser_manifest") {
type = "exe"
- application_name = "content_browser"
+ name = "content_browser"
source = "mojo/content_browser_manifest.json"
- packaged_applications = [
+ packaged_services = [
"media",
"user",
]
@@ -156,20 +156,20 @@ mojo_application_manifest("browser_manifest") {
]
}
-mojo_application_manifest("gpu_manifest") {
+service_manifest("gpu_manifest") {
type = "exe"
- application_name = "content_gpu"
+ name = "content_gpu"
source = "mojo/content_gpu_manifest.json"
}
-mojo_application_manifest("renderer_manifest") {
+service_manifest("renderer_manifest") {
type = "exe"
- application_name = "content_renderer"
+ name = "content_renderer"
source = "mojo/content_renderer_manifest.json"
}
-mojo_application_manifest("utility_manifest") {
+service_manifest("utility_manifest") {
type = "exe"
- application_name = "content_utility"
+ name = "content_utility"
source = "mojo/content_utility_manifest.json"
}
« no previous file with comments | « content/content.gyp ('k') | mash/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698