diff options
author | rouslan@chromium.org <rouslan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-07-10 20:04:42 +0000 |
---|---|---|
committer | rouslan@chromium.org <rouslan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-07-10 20:04:42 +0000 |
commit | 22f34355f3419d5a1e1ae9ceee4b63e7efc1c53f (patch) | |
tree | 45d86d86cb79c641232d344d68d1d74668c75583 /chrome/tools | |
parent | eaf431bc9416b04025e157eec3dc3a7db8b90c70 (diff) | |
download | chromium_src-22f34355f3419d5a1e1ae9ceee4b63e7efc1c53f.zip chromium_src-22f34355f3419d5a1e1ae9ceee4b63e7efc1c53f.tar.gz chromium_src-22f34355f3419d5a1e1ae9ceee4b63e7efc1c53f.tar.bz2 |
Use upstream libaddressinput in Chrome.
Most of the changes are mechanical switches from chromium/ to src/
directory in third_party/libadressinput/.
To simplify the switch, autofill::AddressValidator is a shim between
Chromium and i18n::addressinput::AddressValidator. The shim behaves the
same way as Chromium's version of libaddressinput. The goal is to
gradually remove the shim and make Chromium work directly with
libaddressinupt.
Upstream libaddressinput does not include suggestions, which now can be
found in third_party/libadressinput/chromium/input_suggester.{h,cc}.
A follow up patch will remove Chromium's version of libaddressinput.
BUG=327046
Review URL: https://codereview.chromium.org/298863012
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@282408 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/tools')
-rwxr-xr-x | chrome/tools/build/repack_locales.py | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/chrome/tools/build/repack_locales.py b/chrome/tools/build/repack_locales.py index f837d2a..832d0be 100755 --- a/chrome/tools/build/repack_locales.py +++ b/chrome/tools/build/repack_locales.py @@ -111,13 +111,8 @@ def calc_inputs(locale): if ENABLE_AUTOFILL_DIALOG and OS != 'ios' and OS != 'android': #e.g. '<(SHARED_INTERMEDIATE_DIR)/third_party/libaddressinput/ - # libaddressinput_strings_da.pak', - inputs.append(os.path.join(SHARE_INT_DIR, 'third_party', 'libaddressinput', - 'libaddressinput_strings_%s.pak' % locale)) - - #e.g. '<(SHARED_INTERMEDIATE_DIR)/grit/libaddressinput/ # address_input_strings_da.pak', - inputs.append(os.path.join(SHARE_INT_DIR, 'grit', 'libaddressinput', + inputs.append(os.path.join(SHARE_INT_DIR, 'third_party', 'libaddressinput', 'address_input_strings_%s.pak' % locale)) #e.g. '<(grit_out_dir)/google_chrome_strings_da.pak' |