Index: blimp/client/app/BUILD.gn |
diff --git a/blimp/client/app/BUILD.gn b/blimp/client/app/BUILD.gn |
index 8da4cb824b2bcd31ab8e8710fab0776520ece758..88db08984bdfa0a31416ef348e1622a483c30056 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") { |
David Trainor- moved to gerrit
2016/10/26 00:43:18
Why do we need to just pull the english version ag
xingliu
2016/10/26 21:14:41
Added another target in public/resources/BUILD.gn.
|
+ sources = [ |
+ "$root_gen_dir/blimp/client/core/resources/blimp_strings_en-US.pak", |
+ ] |
+ |
+ deps = [ |
+ "//blimp/client/core/resources", |
+ ] |
+ |
+ output = "$root_out_dir/blimp_shell.pak" |
+} |
+ |
if (is_android) { |
declare_args() { |
# Package name used in the manifest for the Blimp APK. |