| 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.changes import svnpoller | 6 from buildbot.changes import svnpoller |
| 7 from buildbot.scheduler import Dependent | 7 from buildbot.scheduler import Dependent |
| 8 from buildbot.scheduler import Nightly | 8 from buildbot.scheduler import Nightly |
| 9 from buildbot.scheduler import Periodic | 9 from buildbot.scheduler import Periodic |
| 10 from buildbot.scheduler import Scheduler | 10 from buildbot.scheduler import Scheduler |
| (...skipping 315 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 326 | 326 |
| 327 F = chromium_factory.ChromiumFactory | 327 F = chromium_factory.ChromiumFactory |
| 328 def win(): return F('src/chrome', 'win32') | 328 def win(): return F('src/chrome', 'win32') |
| 329 def win_build(): return F('src/build', 'win32') | 329 def win_build(): return F('src/build', 'win32') |
| 330 def win_out(): return F('src/out', 'win32') | 330 def win_out(): return F('src/out', 'win32') |
| 331 def mac(): return F('src/xcodebuild', 'darwin') | 331 def mac(): return F('src/xcodebuild', 'darwin') |
| 332 def linux(**kwargs): return F('src/out', 'linux2', **kwargs) | 332 def linux(**kwargs): return F('src/out', 'linux2', **kwargs) |
| 333 def ios(): return F('src/xcodebuild', 'darwin') | 333 def ios(): return F('src/xcodebuild', 'darwin') |
| 334 | 334 |
| 335 def codesearch(): | 335 def codesearch(): |
| 336 CHROMIUM_GIT_URL = 'https://chromium.googlesource.com' |
| 337 tools_urls = [ |
| 338 'build', |
| 339 'chrome-devtools-frontend', |
| 340 'chromium-jobqueue', |
| 341 'chromium-shortener', |
| 342 'command_wrapper/bin', |
| 343 'commit-queue', |
| 344 'depot_tools', |
| 345 'deps2git', |
| 346 'gsd_generate_index', |
| 347 'perf', |
| 348 ] |
| 349 additional_repos= [ |
| 350 ('tools/%s' % name, '%s/chromium/tools/%s' % (CHROMIUM_GIT_URL, name)) |
| 351 for name in tools_urls] |
| 336 return F('src/build', 'linux2', pull_internal=False, full_checkout=True, | 352 return F('src/build', 'linux2', pull_internal=False, full_checkout=True, |
| 337 additional_svn_urls=[config.Master.trunk_url_tools]) | 353 additional_repos=additional_repos) |
| 338 | 354 |
| 339 def codesearch_scheduler(): | 355 def codesearch_scheduler(): |
| 340 return F('src/build', 'linux2', pull_internal=False) | 356 return F('src/build', 'linux2', pull_internal=False) |
| 341 | 357 |
| 342 def chromeos(): | 358 def chromeos(): |
| 343 return F('src/build', 'linux2') | 359 return F('src/build', 'linux2') |
| 344 | 360 |
| 345 def linux_android(custom_deps_list=None): | 361 def linux_android(custom_deps_list=None): |
| 346 return F('src/build', 'linux2', nohooks_on_update=True, target_os='android', | 362 return F('src/build', 'linux2', nohooks_on_update=True, target_os='android', |
| 347 custom_deps_list=custom_deps_list) | 363 custom_deps_list=custom_deps_list) |
| (...skipping 1784 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2132 | 2148 |
| 2133 c['status'].append(MailNotifier( | 2149 c['status'].append(MailNotifier( |
| 2134 fromaddr='ukai@chromium.org', # Reply-To address | 2150 fromaddr='ukai@chromium.org', # Reply-To address |
| 2135 mode='failing', | 2151 mode='failing', |
| 2136 categories=['goma'], | 2152 categories=['goma'], |
| 2137 relayhost=config.Master.smtp, | 2153 relayhost=config.Master.smtp, |
| 2138 subject='goma canary buildbot %(result)s in %(projectName)s ' | 2154 subject='goma canary buildbot %(result)s in %(projectName)s ' |
| 2139 'on %(builder)s', | 2155 'on %(builder)s', |
| 2140 extraRecipients=['goma+alert@google.com'], | 2156 extraRecipients=['goma+alert@google.com'], |
| 2141 sendToInterestedUsers=False)) | 2157 sendToInterestedUsers=False)) |
| OLD | NEW |