Index: blimp/client/app/BUILD.gn |
diff --git a/blimp/client/app/BUILD.gn b/blimp/client/app/BUILD.gn |
index 8da4cb824b2bcd31ab8e8710fab0776520ece758..8a653e2134e8dda3dbb0872c52d504de2f2678d4 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", |
+ ":pak", |
"//base", |
"//blimp/client/core/compositor", |
+ "//blimp/client/core/resources", |
"//blimp/client/core/session", |
"//blimp/net", |
"//net", |
@@ -163,6 +167,19 @@ if (is_linux && !is_chromeos && use_x11) { |
} |
} |
+# Resources file for linux client. |
+repack("pak") { |
+ sources = [ |
+ "$root_gen_dir/blimp/client/core/resources/blimp_strings_en-US.pak", |
+ ] |
+ |
+ deps = [ |
+ "//blimp/client/public/resources:app_strings", |
David Trainor- moved to gerrit
2016/10/28 04:20:08
Can we call this something that sounds test/shell
xingliu
2016/10/28 22:50:31
Done.
|
+ ] |
+ |
+ output = "$root_out_dir/blimp_shell.pak" |
+} |
+ |
if (is_android) { |
declare_args() { |
# Package name used in the manifest for the Blimp APK. |