| OLD | NEW |
| 1 # -*- python -*- | 1 # -*- python -*- |
| 2 # ex: set syntax=python: | 2 # ex: set syntax=python: |
| 3 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 3 # Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 4 # Use of this source code is governed by a BSD-style license that can be | 4 # Use of this source code is governed by a BSD-style license that can be |
| 5 # found in the LICENSE file. | 5 # found in the LICENSE file. |
| 6 | 6 |
| 7 # READ THIS: | 7 # READ THIS: |
| 8 # See http://dev.chromium.org/developers/testing/chromium-build-infrastructure | 8 # See http://dev.chromium.org/developers/testing/chromium-build-infrastructure |
| 9 | 9 |
| 10 import os | 10 import os |
| (...skipping 314 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 325 return { | 325 return { |
| 326 'name': '%s_presubmit' % name, | 326 'name': '%s_presubmit' % name, |
| 327 'slavebuilddir': (slavebuilddir or ('presubmit_%s' % name)), | 327 'slavebuilddir': (slavebuilddir or ('presubmit_%s' % name)), |
| 328 'factory': m_annotator.BaseFactory( | 328 'factory': m_annotator.BaseFactory( |
| 329 'run_presubmit', properties, | 329 'run_presubmit', properties, |
| 330 max_time=master_utils.CQ_MAX_TIME), | 330 max_time=master_utils.CQ_MAX_TIME), |
| 331 } | 331 } |
| 332 | 332 |
| 333 b_chromium_presubmit = presubmit('chromium', slavebuilddir='linux', | 333 b_chromium_presubmit = presubmit('chromium', slavebuilddir='linux', |
| 334 extra_props={'runhooks': True}) | 334 extra_props={'runhooks': True}) |
| 335 b_depot_tools_presubmit = presubmit('depot_tools') | |
| 336 | 335 |
| 337 # These variable builders are used by Findit to identify culprit commits for | 336 # These variable builders are used by Findit to identify culprit commits for |
| 338 # compile or test failures on the main waterfall. They run on optional slaves | 337 # compile or test failures on the main waterfall. They run on optional slaves |
| 339 # and NOT CQ slaves. | 338 # and NOT CQ slaves. |
| 340 variable_builders = [ | 339 variable_builders = [ |
| 341 { | 340 { |
| 342 'name': 'linux_chromium_variable', | 341 'name': 'linux_chromium_variable', |
| 343 'factory': m_annotator.BaseFactory('findit/chromium/compile'), | 342 'factory': m_annotator.BaseFactory('findit/chromium/compile'), |
| 344 'slavebuilddir': 'linux', | 343 'slavebuilddir': 'linux', |
| 345 }, | 344 }, |
| (...skipping 11 matching lines...) Expand all Loading... |
| 357 'name': 'linux_chromium_chromeos_asan_variable', | 356 'name': 'linux_chromium_chromeos_asan_variable', |
| 358 'factory': m_annotator.BaseFactory('findit/chromium/compile'), | 357 'factory': m_annotator.BaseFactory('findit/chromium/compile'), |
| 359 'slavebuilddir': 'linux_chromeos_asan', | 358 'slavebuilddir': 'linux_chromeos_asan', |
| 360 }, | 359 }, |
| 361 ] | 360 ] |
| 362 | 361 |
| 363 c['builders'] = [ | 362 c['builders'] = [ |
| 364 b_chromium_presubmit, | 363 b_chromium_presubmit, |
| 365 b_codesearch_chromeos_builder, | 364 b_codesearch_chromeos_builder, |
| 366 b_codesearch_linux_builder, | 365 b_codesearch_linux_builder, |
| 367 b_depot_tools_presubmit, | |
| 368 b_linux_chromium_asan_rel_ng, | 366 b_linux_chromium_asan_rel_ng, |
| 369 b_linux_chromium_browser_side_navigation_rel, | 367 b_linux_chromium_browser_side_navigation_rel, |
| 370 b_linux_full_bisect_builder, | 368 b_linux_full_bisect_builder, |
| 371 b_linux_nacl_sdk, | 369 b_linux_nacl_sdk, |
| 372 b_linux_nacl_sdk_build, | 370 b_linux_nacl_sdk_build, |
| 373 b_linux_site_isolation, | 371 b_linux_site_isolation, |
| 374 b_linux_valgrind, | 372 b_linux_valgrind, |
| 375 ] + chromium_builders + ozone_builders + variable_builders | 373 ] + chromium_builders + ozone_builders + variable_builders |
| 376 | 374 |
| 377 | 375 |
| (...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 496 # base.make_stop_form = hack_stop(base.make_stop_form) | 494 # base.make_stop_form = hack_stop(base.make_stop_form) |
| 497 | 495 |
| 498 | 496 |
| 499 ####### PROJECT IDENTITY | 497 ####### PROJECT IDENTITY |
| 500 | 498 |
| 501 # The 'projectURL' string will be used to provide a link | 499 # The 'projectURL' string will be used to provide a link |
| 502 # from buildbot HTML pages to your project's home page. | 500 # from buildbot HTML pages to your project's home page. |
| 503 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage' | 501 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage' |
| 504 | 502 |
| 505 # vi: set ts=4 sts=2 sw=2 et: | 503 # vi: set ts=4 sts=2 sw=2 et: |
| OLD | NEW |