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

Unified Diff: chrome/app/BUILD.gn

Issue 1828733004: Load application manifests from resources (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase 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
« no previous file with comments | « no previous file | chrome/app/mojo/chrome_manifest.json » ('j') | chrome/app/mojo/chrome_manifest.json » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/app/BUILD.gn
diff --git a/chrome/app/BUILD.gn b/chrome/app/BUILD.gn
index 92bb6433c274b92438e992c79131d190442cf2b1..f5c3c3e680e1307dd414a09242e881109bac6b88 100644
--- a/chrome/app/BUILD.gn
+++ b/chrome/app/BUILD.gn
@@ -2,6 +2,7 @@
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
+import("//mojo/public/mojo_application_manifest.gni")
import("//tools/grit/grit_rule.gni")
if (is_android) {
@@ -364,3 +365,22 @@ source_set("test_support") {
]
}
}
+
+mojo_application_manifest("chrome_manifest") {
+ type = "exe"
+ application_name = "chrome"
+ source = "mojo/chrome_manifest.json"
+}
+
+mojo_application_manifest("chrome_renderer_manifest") {
+ type = "exe"
+ application_name = "chrome_renderer"
+ source = "mojo/chrome_renderer_manifest.json"
+}
+
+group("mojo_manifests") {
+ deps = [
+ ":chrome_manifest",
+ ":chrome_renderer_manifest",
+ ]
+}
« no previous file with comments | « no previous file | chrome/app/mojo/chrome_manifest.json » ('j') | chrome/app/mojo/chrome_manifest.json » ('J')

Powered by Google App Engine
This is Rietveld 408576698