Index: blimp/client/app/BUILD.gn |
diff --git a/blimp/client/app/BUILD.gn b/blimp/client/app/BUILD.gn |
index 62e6073a765ddc98f090e9b0c86968db98ba2235..73b8978f41063625d7547593eea5bfb9740077e5 100644 |
--- a/blimp/client/app/BUILD.gn |
+++ b/blimp/client/app/BUILD.gn |
@@ -3,6 +3,7 @@ |
# found in the LICENSE file. |
import("//build/config/ui.gni") |
+import("//tools/grit/repack.gni") |
if (is_android) { |
import("//build/config/android/config.gni") |
@@ -51,6 +52,7 @@ source_set("app") { |
"//gpu/skia_bindings", |
"//net", |
"//third_party/libwebp", |
+ "//ui/base:base", |
"//ui/gfx/geometry", |
"//ui/gl", |
"//ui/gl/init", |
@@ -140,8 +142,10 @@ if (is_linux && !is_chromeos && use_x11) { |
deps = [ |
":app", |
+ ":shell_strings", |
"//base", |
"//blimp/client/core/compositor", |
+ "//blimp/client/core/resources", |
"//blimp/client/core/session", |
"//blimp/client/core/settings:settings", |
"//blimp/net", |
@@ -166,6 +170,19 @@ if (is_linux && !is_chromeos && use_x11) { |
} |
} |
+# Resources file for linux shell. |
+repack("shell_strings") { |
+ sources = [ |
+ "$root_gen_dir/blimp/client/core/resources/blimp_strings_en-US.pak", |
+ ] |
+ |
+ deps = [ |
+ "//blimp/client/public/resources:shell_strings", |
+ ] |
+ |
+ output = "$root_out_dir/blimp_shell.pak" |
+} |
+ |
if (is_android) { |
declare_args() { |
# Package name used in the manifest for the Blimp APK. |