Index: chrome/BUILD.gn |
diff --git a/chrome/BUILD.gn b/chrome/BUILD.gn |
index 8d1cef7d8dd4a432febaded48e1c91ea20b8995c..bb3b1487d9e2d6f7a4f8d16efe5f65289eefee31 100644 |
--- a/chrome/BUILD.gn |
+++ b/chrome/BUILD.gn |
@@ -1364,7 +1364,6 @@ group("packed_resources") { |
public_deps = [ |
":repack_chrome_100_percent", |
":repack_locales_pack", |
- ":repack_pseudo_locales_pack", |
] |
if (is_chrome_branded && !is_mac && !is_android) { |
@@ -1490,25 +1489,6 @@ chrome_repack_locales("repack_locales_pack") { |
} |
} |
-chrome_repack_locales("repack_pseudo_locales_pack") { |
- visibility = [ ":*" ] |
- |
- input_locales = [ "fake-bidi" ] |
- |
- if (is_mac) { |
- output_locales = [ "fake_bidi" ] # Mac uses underscores. |
- } else { |
- output_locales = [ "fake-bidi" ] |
- } |
- |
- if (enable_resource_whitelist_generation) { |
- repack_whitelist = android_resource_whitelist |
- deps = [ |
- ":resource_whitelist", |
- ] |
- } |
-} |
- |
# Generates a rule to repack a set of resources, substituting a given string |
# in for the percentage (e.g. "100", "200"). It generates the repacked files in |
# the "gen" directory, and then introduces a copy rule to copy it to the root |