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

Unified Diff: components/mus/BUILD.gn

Issue 1874703003: Load ash_sysui resources with ResourceLoader. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix for comment. Created 4 years, 8 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: components/mus/BUILD.gn
diff --git a/components/mus/BUILD.gn b/components/mus/BUILD.gn
index c9e3737f2effc8164bdd1c12455578c18870b945..fb42e4ae52dc1958d1662bae4cca7ea7e4638fdb 100644
--- a/components/mus/BUILD.gn
+++ b/components/mus/BUILD.gn
@@ -118,11 +118,13 @@ source_set("lib") {
}
}
+resource_out_dir = "$root_out_dir/$mojo_application_subdir/mus/resources"
sky 2016/04/08 21:53:45 Similar comment here.
kylechar 2016/04/11 13:16:33 Hmm. So there are two implementations of //compone
sky 2016/04/11 15:00:30 I don't think mus works well on android at this po
+
repack("resources_strings") {
sources = [
"$root_gen_dir/ui/strings/app_locale_settings_en-US.pak",
]
- output = "$root_out_dir/$mojo_application_subdir/mus/resources/mus_app_resources_strings.pak"
+ output = "$resource_out_dir/mus_app_resources_strings.pak"
deps = [
"//ui/strings",
]
@@ -132,7 +134,7 @@ repack("resources_100") {
sources = [
"$root_gen_dir/ui/resources/ui_resources_100_percent.pak",
]
- output = "$root_out_dir/$mojo_application_subdir/mus/resources/mus_app_resources_100.pak"
+ output = "$resource_out_dir/mus_app_resources_100.pak"
deps = [
"//ui/resources",
]
@@ -142,7 +144,7 @@ repack("resources_200") {
sources = [
"$root_gen_dir/ui/resources/ui_resources_200_percent.pak",
]
- output = "$root_out_dir/$mojo_application_subdir/mus/resources/mus_app_resources_200.pak"
+ output = "$resource_out_dir/mus_app_resources_200.pak"
deps = [
"//ui/resources",
]
« ash/mus/BUILD.gn ('K') | « ash/mus/sysui_application.cc ('k') | components/mus/mus_app.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698