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

Unified Diff: ios/chrome/tools/build/ios_repack_locales.py

Issue 1679283002: Componentize Chrome terms of service, Accept-Languages & default encoding. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase && use a qualified include for the new file Created 4 years, 10 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 | « ios/chrome/ios_chrome_resources.gyp ('k') | tools/copyright_scanner/third_party_files_whitelist.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ios/chrome/tools/build/ios_repack_locales.py
diff --git a/ios/chrome/tools/build/ios_repack_locales.py b/ios/chrome/tools/build/ios_repack_locales.py
index bd30bc097caa576251cd21731f3b156efeb578f9..5f3e77dc8cac4a698267836107f85d593d3b0190 100755
--- a/ios/chrome/tools/build/ios_repack_locales.py
+++ b/ios/chrome/tools/build/ios_repack_locales.py
@@ -42,6 +42,10 @@ def calc_inputs(options, locale):
"""Determine the files that need processing for the given locale."""
inputs = []
+ #e.g. 'out/Debug/gen/components/strings/components_locale_settings_da.pak'
+ inputs.append(os.path.join(options.share_int_dir, 'components', 'strings',
+ 'components_locale_settings_%s.pak' % locale))
+
#e.g. 'out/Debug/gen/components/strings/components_strings_da.pak'
inputs.append(os.path.join(options.share_int_dir, 'components', 'strings',
'components_strings_%s.pak' % locale))
« no previous file with comments | « ios/chrome/ios_chrome_resources.gyp ('k') | tools/copyright_scanner/third_party_files_whitelist.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698