| OLD | NEW |
| 1 # vim: ft=python: | 1 # vim: ft=python: |
| 2 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 2 # Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 3 # Use of this source code is governed by a BSD-style license that can be | 3 # Use of this source code is governed by a BSD-style license that can be |
| 4 # found in the LICENSE file. | 4 # found in the LICENSE file. |
| 5 | 5 |
| 6 from buildbot.scheduler import Dependent | 6 from buildbot.scheduler import Dependent |
| 7 from buildbot.scheduler import Nightly | 7 from buildbot.scheduler import Nightly |
| 8 from buildbot.scheduler import Periodic | 8 from buildbot.scheduler import Periodic |
| 9 from buildbot.scheduler import Scheduler | 9 from buildbot.scheduler import Scheduler |
| 10 from buildbot.scheduler import Triggerable | 10 from buildbot.scheduler import Triggerable |
| (...skipping 313 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 324 | 324 |
| 325 F = chromium_factory.ChromiumFactory | 325 F = chromium_factory.ChromiumFactory |
| 326 def win(): return F('src/chrome', 'win32') | 326 def win(): return F('src/chrome', 'win32') |
| 327 def win_build(): return F('src/build', 'win32') | 327 def win_build(): return F('src/build', 'win32') |
| 328 def win_out(): return F('src/out', 'win32') | 328 def win_out(): return F('src/out', 'win32') |
| 329 def mac(): return F('src/xcodebuild', 'darwin') | 329 def mac(): return F('src/xcodebuild', 'darwin') |
| 330 def linux(**kwargs): return F('src/out', 'linux2', **kwargs) | 330 def linux(**kwargs): return F('src/out', 'linux2', **kwargs) |
| 331 def ios(): return F('src/xcodebuild', 'darwin') | 331 def ios(): return F('src/xcodebuild', 'darwin') |
| 332 | 332 |
| 333 def codesearch(): | 333 def codesearch(): |
| 334 CHROMIUM_GIT_URL = 'https://chromium.googlesource.com' |
| 335 tools_urls = [ |
| 336 'build', |
| 337 'chrome-devtools-frontend', |
| 338 'chromium-jobqueue', |
| 339 'chromium-shortener', |
| 340 'command_wrapper/bin', |
| 341 'commit-queue', |
| 342 'depot_tools', |
| 343 'deps2git', |
| 344 'gsd_generate_index', |
| 345 'perf', |
| 346 ] |
| 347 additional_repos= [ |
| 348 ('tools/%s' % name, '%s/chromium/tools/%s' % (CHROMIUM_GIT_URL, name)) |
| 349 for name in tools_urls] |
| 334 return F('src/build', 'linux2', pull_internal=False, full_checkout=True, | 350 return F('src/build', 'linux2', pull_internal=False, full_checkout=True, |
| 335 additional_svn_urls=[config.Master.trunk_url_tools]) | 351 additional_repos=additional_repos) |
| 336 | 352 |
| 337 def codesearch_scheduler(): | 353 def codesearch_scheduler(): |
| 338 return F('src/build', 'linux2', pull_internal=False) | 354 return F('src/build', 'linux2', pull_internal=False) |
| 339 | 355 |
| 340 def chromeos(): | 356 def chromeos(): |
| 341 return F('src/build', 'linux2') | 357 return F('src/build', 'linux2') |
| 342 | 358 |
| 343 def linux_android(custom_deps_list=None): | 359 def linux_android(custom_deps_list=None): |
| 344 return F('src/build', 'linux2', nohooks_on_update=True, target_os='android', | 360 return F('src/build', 'linux2', nohooks_on_update=True, target_os='android', |
| 345 custom_deps_list=custom_deps_list) | 361 custom_deps_list=custom_deps_list) |
| (...skipping 1780 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2126 | 2142 |
| 2127 c['status'].append(MailNotifier( | 2143 c['status'].append(MailNotifier( |
| 2128 fromaddr='ukai@chromium.org', # Reply-To address | 2144 fromaddr='ukai@chromium.org', # Reply-To address |
| 2129 mode='failing', | 2145 mode='failing', |
| 2130 categories=['goma'], | 2146 categories=['goma'], |
| 2131 relayhost=config.Master.smtp, | 2147 relayhost=config.Master.smtp, |
| 2132 subject='goma canary buildbot %(result)s in %(projectName)s ' | 2148 subject='goma canary buildbot %(result)s in %(projectName)s ' |
| 2133 'on %(builder)s', | 2149 'on %(builder)s', |
| 2134 extraRecipients=['goma+alert@google.com'], | 2150 extraRecipients=['goma+alert@google.com'], |
| 2135 sendToInterestedUsers=False)) | 2151 sendToInterestedUsers=False)) |
| OLD | NEW |