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

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

Issue 1828733004: Load application manifests from resources (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 9 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
Index: content/public/app/BUILD.gn
diff --git a/content/public/app/BUILD.gn b/content/public/app/BUILD.gn
index df5e5d34589c6e65433254f5ae9272b31e299e5a..2ce854619c3cea21a2731e675b985f28ddb01a87 100644
--- a/content/public/app/BUILD.gn
+++ b/content/public/app/BUILD.gn
@@ -21,6 +21,7 @@
# //content/public/app:both_sources (source set)
import("//build/config/chrome_build.gni")
+import("//mojo/public/mojo_application_manifest.gni")
public_app_shared_sources = [
"content_jni_onload.h",
@@ -141,3 +142,15 @@ if (is_component_build) {
}
}
}
+
+mojo_application_manifest("browser_manifest") {
+ type = "exe"
+ application_name = "content_browser"
+ source = "mojo/content_browser_manifest.json"
+}
+
+mojo_application_manifest("renderer_manifest") {
+ type = "exe"
+ application_name = "content_renderer"
+ source = "mojo/content_renderer_manifest.json"
+}

Powered by Google App Engine
This is Rietveld 408576698