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

Unified Diff: components/mus/BUILD.gn

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 | « no previous file | components/resource_provider/file_utils.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/mus/BUILD.gn
diff --git a/components/mus/BUILD.gn b/components/mus/BUILD.gn
index f8e2972acb0ea109ef8babd1b19e4b2c3308c62c..85fbd16fd77ae406fa09c3f8b0b3439260c59ec9 100644
--- a/components/mus/BUILD.gn
+++ b/components/mus/BUILD.gn
@@ -6,6 +6,7 @@ import("//build/config/ui.gni")
import("//testing/test.gni")
import("//mojo/public/mojo_application.gni")
import("//mojo/public/mojo_application_manifest.gni")
+import("//mojo/public/mojo_constants.gni")
import("//tools/grit/repack.gni")
if (is_android) {
@@ -67,7 +68,7 @@ if (is_win) {
]
outputs = [
- "$root_out_dir/mus/{{source_file_part}}",
+ "$root_out_dir/$mojo_application_subdir/mus/{{source_file_part}}",
]
}
}
@@ -120,7 +121,7 @@ repack("resources_strings") {
sources = [
"$root_gen_dir/ui/strings/app_locale_settings_en-US.pak",
]
- output = "$root_out_dir/mus/resources/mus_app_resources_strings.pak"
+ output = "$root_out_dir/$mojo_application_subdir/mus/resources/mus_app_resources_strings.pak"
deps = [
"//ui/strings",
]
@@ -130,7 +131,7 @@ repack("resources_100") {
sources = [
"$root_gen_dir/ui/resources/ui_resources_100_percent.pak",
]
- output = "$root_out_dir/mus/resources/mus_app_resources_100.pak"
+ output = "$root_out_dir/$mojo_application_subdir/mus/resources/mus_app_resources_100.pak"
deps = [
"//ui/resources",
]
@@ -140,7 +141,7 @@ repack("resources_200") {
sources = [
"$root_gen_dir/ui/resources/ui_resources_200_percent.pak",
]
- output = "$root_out_dir/mus/resources/mus_app_resources_200.pak"
+ output = "$root_out_dir/$mojo_application_subdir/mus/resources/mus_app_resources_200.pak"
deps = [
"//ui/resources",
]
« no previous file with comments | « no previous file | components/resource_provider/file_utils.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698