| Index: ash/mus/BUILD.gn
|
| diff --git a/ash/mus/BUILD.gn b/ash/mus/BUILD.gn
|
| index 97ff79b14f22fda7c8bff77d139a34c5fab4cc40..46cec8e5d13d9ffcfae7d25eadcb99ec14c21430 100644
|
| --- a/ash/mus/BUILD.gn
|
| +++ b/ash/mus/BUILD.gn
|
| @@ -78,10 +78,17 @@ source_set("lib") {
|
|
|
| deps = [
|
| "//components/user_manager",
|
| + # JAMES: Should these be public deps?
|
| + "//device/bluetooth",
|
| + "//ui/message_center",
|
| ]
|
|
|
| public_deps = [
|
| "//ash",
|
| +#JAMES
|
| + "//ash/resources",
|
| + "//ash/strings",
|
| +
|
| "//ash/mus/resources",
|
| "//ash/public/interfaces",
|
| "//base",
|
| @@ -104,6 +111,11 @@ source_set("lib") {
|
| "//ui/views",
|
| "//ui/views/mus:for_mojo_application",
|
| ]
|
| +
|
| + # JAMES
|
| + if (is_chromeos) {
|
| + deps += [ "//chromeos" ]
|
| + }
|
| }
|
|
|
| mojo_native_application("mus") {
|
| @@ -136,17 +148,23 @@ mojo_application_manifest("manifest") {
|
|
|
| repack("resources") {
|
| sources = [
|
| +#JAMES - how to do ash strings?
|
| + "$root_out_dir/ash_test_strings.pak",
|
| +
|
| "$root_gen_dir/ash/mus/resources/ash_mus_resources_100_percent.pak",
|
| "$root_gen_dir/ash/resources/ash_resources_100_percent.pak",
|
| "$root_gen_dir/ui/resources/ui_resources_100_percent.pak",
|
| - "$root_gen_dir/ui/strings/app_locale_settings_en-US.pak",
|
| - "$root_gen_dir/ui/strings/ui_strings_en-US.pak",
|
| +# "$root_gen_dir/ui/strings/app_locale_settings_en-US.pak",
|
| +# "$root_gen_dir/ui/strings/ui_strings_en-US.pak",
|
| "$root_gen_dir/ui/views/resources/views_resources_100_percent.pak",
|
| ]
|
| output = "$root_out_dir/ash_mus_resources.pak"
|
| deps = [
|
| "//ash/mus/resources",
|
| "//ash/resources",
|
| +#JAMES
|
| + "//ash/strings:ash_test_strings",
|
| +
|
| "//ui/resources",
|
| "//ui/strings",
|
| "//ui/views/mus:resources",
|
|
|