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

Unified Diff: chrome/tools/build/repack_locales.py

Issue 1931043002: Remove requestAutocomplete (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 years, 7 months 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 | « chrome/test/BUILD.gn ('k') | components/autofill.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/tools/build/repack_locales.py
diff --git a/chrome/tools/build/repack_locales.py b/chrome/tools/build/repack_locales.py
index 312a52abce82bd86110170d30b8beebf138dadee..f5b84dfd47fbc54c814b2f7db325f5bf38f5b26f 100755
--- a/chrome/tools/build/repack_locales.py
+++ b/chrome/tools/build/repack_locales.py
@@ -33,7 +33,6 @@ OS = None
CHROMEOS = False
USE_ASH = False
-ENABLE_AUTOFILL_DIALOG = False
ENABLE_EXTENSIONS = False
WHITELIST = None
@@ -126,6 +125,11 @@ def calc_inputs(locale):
inputs.append(os.path.join(SHARE_INT_DIR, 'ui', 'strings',
'app_locale_settings_%s.pak' % locale))
+ #e.g. '<(SHARED_INTERMEDIATE_DIR)/third_party/libaddressinput/
+ # address_input_strings_da.pak',
+ inputs.append(os.path.join(SHARE_INT_DIR, 'third_party', 'libaddressinput',
+ 'address_input_strings_%s.pak' % locale))
+
else:
#e.g. '<(SHARED_INTERMEDIATE_DIR)/ios/chrome/ios_locale_settings_da.pak'
inputs.append(os.path.join(SHARE_INT_DIR, 'ios', 'chrome',
@@ -141,12 +145,6 @@ def calc_inputs(locale):
inputs.append(os.path.join(SHARE_INT_DIR, 'ios', 'chrome',
'ios_%s_strings_%s.pak' % (BRANDING, locale)))
- if ENABLE_AUTOFILL_DIALOG:
- #e.g. '<(SHARED_INTERMEDIATE_DIR)/third_party/libaddressinput/
- # address_input_strings_da.pak',
- inputs.append(os.path.join(SHARE_INT_DIR, 'third_party', 'libaddressinput',
- 'address_input_strings_%s.pak' % locale))
-
if ENABLE_EXTENSIONS:
# For example:
# '<(SHARED_INTERMEDIATE_DIR)/extensions/strings/extensions_strings_da.pak
« no previous file with comments | « chrome/test/BUILD.gn ('k') | components/autofill.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698