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

Unified Diff: blimp/client/app/BUILD.gn

Issue 2431653004: Setup Blimp internal string resources. (Closed)
Patch Set: Added some recent blimp java xml file. Created 4 years, 1 month 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
« no previous file with comments | « blimp/client/DEPS ('k') | blimp/client/app/blimp_startup.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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.
« no previous file with comments | « blimp/client/DEPS ('k') | blimp/client/app/blimp_startup.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698