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

Unified Diff: third_party/libaddressinput/BUILD.gn

Issue 1444623002: Fix //third_party/libaddressinput:string target on iOS. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@ios_web_fix
Patch Set: Created 5 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/libaddressinput/BUILD.gn
diff --git a/third_party/libaddressinput/BUILD.gn b/third_party/libaddressinput/BUILD.gn
index 019188624a9404ea97151dfbb31cd9e6b06425ca..36fed6f55d1049ac8556d600b818cdf8cc27e740 100644
--- a/third_party/libaddressinput/BUILD.gn
+++ b/third_party/libaddressinput/BUILD.gn
@@ -92,6 +92,18 @@ grit("strings") {
"address_input_strings_zh-TW.pak",
]
+ if (is_ios) {
+ # iOS uses "pt" for pt-BR" and "es-MX" for "es-419".
+ outputs -= [
+ "address_input_strings_pt-BR.pak",
+ "address_input_strings_es-419.pak",
+ ]
+ outputs += [
+ "address_input_strings_pt.pak",
+ "address_input_strings_es-MX.pak",
+ ]
+ }
+
configs = [ ":no-newline-eof-warning" ]
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698