summaryrefslogtreecommitdiff
path: root/chromium/remoting/remoting_locales.gni
diff options
context:
space:
mode:
authorAllan Sandfeld Jensen <allan.jensen@qt.io>2017-11-20 10:33:36 +0100
committerAllan Sandfeld Jensen <allan.jensen@qt.io>2017-11-22 11:45:12 +0000
commitbe59a35641616a4cf23c4a13fa0632624b021c1b (patch)
tree9da183258bdf9cc413f7562079d25ace6955467f /chromium/remoting/remoting_locales.gni
parentd702e4b6a64574e97fc7df8fe3238cde70242080 (diff)
downloadqtwebengine-chromium-be59a35641616a4cf23c4a13fa0632624b021c1b.tar.gz
BASELINE: Update Chromium to 62.0.3202.101
Change-Id: I2d5eca8117600df6d331f6166ab24d943d9814ac Reviewed-by: Alexandru Croitor <alexandru.croitor@qt.io>
Diffstat (limited to 'chromium/remoting/remoting_locales.gni')
-rw-r--r--chromium/remoting/remoting_locales.gni13
1 files changed, 9 insertions, 4 deletions
diff --git a/chromium/remoting/remoting_locales.gni b/chromium/remoting/remoting_locales.gni
index 3dfd0a3047a..42e949d1e9b 100644
--- a/chromium/remoting/remoting_locales.gni
+++ b/chromium/remoting/remoting_locales.gni
@@ -22,7 +22,6 @@ remoting_locales = [
"et",
"fa",
- "fake-bidi",
"fi",
"fil",
"fr",
@@ -72,7 +71,6 @@ remoting_locales_with_underscores = remoting_locales
remoting_locales_with_underscores -= [
"en-GB",
- "fake-bidi",
"pt-PT",
"zh-CN",
"zh-TW",
@@ -80,14 +78,21 @@ remoting_locales_with_underscores -= [
remoting_locales_with_underscores += [
"en_GB",
- "fake_bidi",
"pt_PT",
"zh_CN",
"zh_TW",
]
+if (!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.
-if (is_chromeos || is_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) {
remoting_locales += [ "en-US" ]
remoting_locales_with_underscores += [ "en_US" ]
}