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

Unified Diff: mojo/public/mojo_application_manifest.gni

Issue 1850623004: Create .mojo applications in a common subdir under out/Debug (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
« no previous file with comments | « mojo/public/mojo_application.gni ('k') | mojo/public/mojo_constants.gni » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mojo/public/mojo_application_manifest.gni
diff --git a/mojo/public/mojo_application_manifest.gni b/mojo/public/mojo_application_manifest.gni
index 5b6cefe1d74d4758b7736ce6345fd0a2935084b5..589e30e6050eef8e0001dd417d92ce41645664d6 100644
--- a/mojo/public/mojo_application_manifest.gni
+++ b/mojo/public/mojo_application_manifest.gni
@@ -2,6 +2,8 @@
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
+import("//mojo/public/mojo_constants.gni")
+
# Used to produce a Mojo Application Manifest for an application.
#
# Parameters:
@@ -67,7 +69,7 @@ template("mojo_application_manifest") {
]
if (type == "mojo") {
- output = "$root_out_dir/$application_name/manifest.json"
+ output = "$root_out_dir/$mojo_application_subdir/$application_name/manifest.json"
} else {
output = "$root_out_dir/${application_name}_manifest.json"
}
@@ -86,7 +88,7 @@ template("mojo_application_manifest") {
if (defined(invoker.packaged_applications)) {
foreach(application_name, invoker.packaged_applications) {
- input = "$root_out_dir/$application_name/manifest.json"
+ input = "$root_out_dir/$mojo_application_subdir/$application_name/manifest.json"
inputs += [ input ]
args += [ rebase_path(input, root_build_dir) ]
}
« no previous file with comments | « mojo/public/mojo_application.gni ('k') | mojo/public/mojo_constants.gni » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698