| Index: scripts/slave/bot_update.py
|
| diff --git a/scripts/slave/bot_update.py b/scripts/slave/bot_update.py
|
| index cfdba65fcb702817e8fc0cbdd9945e696fa2941d..140ace543ac44027a72cd977d03e83e62a0e1227 100755
|
| --- a/scripts/slave/bot_update.py
|
| +++ b/scripts/slave/bot_update.py
|
| @@ -236,7 +236,6 @@ ENABLED_SLAVES.update(internal_data.get('ENABLED_SLAVES', {}))
|
| # be disabled.
|
| DISABLED_BUILDERS = {
|
| 'chromium.fyi': [
|
| - 'Chromium Linux Codesearch',
|
| 'ChromiumOS Codesearch',
|
| ],
|
| 'chromium.webkit': [
|
| @@ -534,6 +533,8 @@ def solutions_to_git(input_solutions):
|
| solution['deps_file'] = path.join('build', buildspec_name, '.DEPS.git')
|
| elif parsed_path in RECOGNIZED_PATHS:
|
| solution['url'] = RECOGNIZED_PATHS[parsed_path]
|
| + elif parsed_url.scheme == 'https' and 'googlesource' in parsed_url.netloc:
|
| + pass
|
| else:
|
| warnings.append('path %r not recognized' % parsed_path)
|
| print 'Warning: %s' % (warnings[-1],)
|
|
|