summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
Diffstat (limited to 'tools')
-rwxr-xr-xtools/buildscripts/repack_locales.py9
-rwxr-xr-xtools/scripts/take_snapshot.py2
2 files changed, 11 insertions, 0 deletions
diff --git a/tools/buildscripts/repack_locales.py b/tools/buildscripts/repack_locales.py
index eabc04e9f..05e2895ed 100755
--- a/tools/buildscripts/repack_locales.py
+++ b/tools/buildscripts/repack_locales.py
@@ -105,6 +105,15 @@ def calc_inputs(locale):
inputs.append(os.path.join(SHARE_INT_DIR, 'ui', 'app_locale_settings',
'app_locale_settings_%s.pak' % locale))
+ # Used for localized error messages and error pages
+ #e.g. '<(SHARED_INTERMEDIATE_DIR)/chrome/generated_resources_da.pak'
+ inputs.append(os.path.join(SHARE_INT_DIR, 'chrome',
+ 'generated_resources_%s.pak' % locale))
+
+ #e.g. '<(SHARED_INTERMEDIATE_DIR)/chrome/generated_resources_da.pak'
+ inputs.append(os.path.join(SHARE_INT_DIR, 'chrome',
+ 'chromium_strings_%s.pak' % locale))
+
# Add any extra input files.
for extra_file in EXTRA_INPUT_FILES:
inputs.append('%s_%s.pak' % (extra_file, locale))
diff --git a/tools/scripts/take_snapshot.py b/tools/scripts/take_snapshot.py
index bda2a966f..d6b8fedb1 100755
--- a/tools/scripts/take_snapshot.py
+++ b/tools/scripts/take_snapshot.py
@@ -100,6 +100,8 @@ def isInChromiumBlacklist(file_path):
not 'media/desktop_media_list.h' in file_path and
not 'media/desktop_streams_registry.cc' in file_path and
not 'media/desktop_streams_registry.h' in file_path and
+ not 'net/net_error_info' in file_path and
+ not 'common/localized_error' in file_path and
not file_path.endswith('.isolate') and
not file_path.endswith('cf_resources.rc') and
not file_path.endswith('version.py') and