summaryrefslogtreecommitdiff
path: root/chromium/remoting/remoting_locales.gni
diff options
context:
space:
mode:
authorAllan Sandfeld Jensen <allan.jensen@qt.io>2021-05-20 09:47:09 +0200
committerAllan Sandfeld Jensen <allan.jensen@qt.io>2021-06-07 11:15:42 +0000
commit189d4fd8fad9e3c776873be51938cd31a42b6177 (patch)
tree6497caeff5e383937996768766ab3bb2081a40b2 /chromium/remoting/remoting_locales.gni
parent8bc75099d364490b22f43a7ce366b366c08f4164 (diff)
downloadqtwebengine-chromium-189d4fd8fad9e3c776873be51938cd31a42b6177.tar.gz
BASELINE: Update Chromium to 90.0.4430.221
Change-Id: Iff4d9d18d2fcf1a576f3b1f453010f744a232920 Reviewed-by: Allan Sandfeld Jensen <allan.jensen@qt.io>
Diffstat (limited to 'chromium/remoting/remoting_locales.gni')
-rw-r--r--chromium/remoting/remoting_locales.gni14
1 files changed, 7 insertions, 7 deletions
diff --git a/chromium/remoting/remoting_locales.gni b/chromium/remoting/remoting_locales.gni
index 0f6925568bc..a9f4d8983d8 100644
--- a/chromium/remoting/remoting_locales.gni
+++ b/chromium/remoting/remoting_locales.gni
@@ -2,6 +2,8 @@
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
+import("//build/config/chromeos/ui_mode.gni")
+
resources_locale_dir = "$root_gen_dir/remoting/resources/_locales"
# See also remoting_locales_with_underscores below.
@@ -83,19 +85,17 @@ remoting_locales_with_underscores += [
"zh_TW",
]
-# The fake-bidi locale isn't accepted by the app store.
-if (!is_ios || !is_official_build) {
- remoting_locales += [ "fake-bidi" ]
- remoting_locales_with_underscores += [ "fake_bidi" ]
-}
-
# An additional locale "en-US" is generated for ChromeOS and Chrome on iOS.
# TODO(yuweih): Our build script doesn't seem to work with en-US and Chrome
# on iOS doesn't seem to have en-US.lproj. Add is_ios back if we do need to
# work with en-US.
-if (is_chromeos) {
+if (is_chromeos_ash || is_chromeos_lacros) {
remoting_locales += [ "en-US" ]
remoting_locales_with_underscores += [ "en_US" ]
+
+ # Support Icelandic in ChromeOS
+ remoting_locales += [ "is" ]
+ remoting_locales_with_underscores += [ "is" ]
}
# Locales "pt-BR" and "es-419" are named "pt" and "es-MX" respectively on iOS.