| Index: buildbot/scripts/common/chromium_config.py
|
| ===================================================================
|
| --- buildbot/scripts/common/chromium_config.py (revision 25714)
|
| +++ buildbot/scripts/common/chromium_config.py (working copy)
|
| @@ -123,7 +123,10 @@
|
|
|
| # List of symbol files to save, but not to upload to the symbol server
|
| # (generally because they have no symbols and thus would produce an error).
|
| - symbols_to_skip_upload = ['icudt42.dll', 'rlz.dll',]
|
| + # TODO(jungshik): make the name of icudt dll independent of the ICU version.
|
| + # For now, we list both icudt{38,42}.dll because this script is used by
|
| + # pre-ICU 4.2 builds as well.
|
| + symbols_to_skip_upload = ['icudt38.dll', 'icudt42.dll', 'rlz.dll',]
|
|
|
| if os.environ.get('CHROMIUM_BUILD', '') == '_google_chrome':
|
| exes_to_skip_entirely = []
|
| @@ -148,9 +151,13 @@
|
| installer_exe = Installer.installer_exe
|
|
|
| # Test files to archive.
|
| + # TODO(jungshik): make the name of icudt dll independent of the ICU version.
|
| + # For now, we list both icudt{38,42}.dll because this script is used by
|
| + # pre-ICU 4.2 builds as well.
|
| tests_to_archive = ['reliability_tests.exe',
|
| 'test_shell.exe',
|
| 'automated_ui_tests.exe',
|
| + 'icudt38.dll',
|
| 'icudt42.dll',
|
| 'plugins\\npapi_layout_test_plugin.dll',
|
| ]
|
|
|