| 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 326 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 337 # These variable builders are used by Findit to identify culprit commits for | 337 # 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 | 338 # compile or test failures on the main waterfall. They run on optional slaves |
| 339 # and NOT CQ slaves. | 339 # and NOT CQ slaves. |
| 340 variable_builders = [ | 340 variable_builders = [ |
| 341 { | 341 { |
| 342 'name': 'linux_chromium_variable', | 342 'name': 'linux_chromium_variable', |
| 343 'factory': m_annotator.BaseFactory('findit/chromium/compile'), | 343 'factory': m_annotator.BaseFactory('findit/chromium/compile'), |
| 344 'slavebuilddir': 'linux', | 344 'slavebuilddir': 'linux', |
| 345 }, | 345 }, |
| 346 { | 346 { |
| 347 'name': 'linux_chromium_variable_32', |
| 348 'factory': m_annotator.BaseFactory('findit/chromium/compile'), |
| 349 'slavebuilddir': 'linux_32', |
| 350 }, |
| 351 { |
| 347 'name': 'linux_chromium_asan_variable', | 352 'name': 'linux_chromium_asan_variable', |
| 348 'factory': m_annotator.BaseFactory('findit/chromium/compile'), | 353 'factory': m_annotator.BaseFactory('findit/chromium/compile'), |
| 349 'slavebuilddir': 'linux_asan', | 354 'slavebuilddir': 'linux_asan', |
| 350 }, | 355 }, |
| 351 { | 356 { |
| 352 'name': 'linux_chromium_chromeos_variable', | 357 'name': 'linux_chromium_chromeos_variable', |
| 353 'factory': m_annotator.BaseFactory('findit/chromium/compile'), | 358 'factory': m_annotator.BaseFactory('findit/chromium/compile'), |
| 354 'slavebuilddir': 'linux_chromeos', | 359 'slavebuilddir': 'linux_chromeos', |
| 355 }, | 360 }, |
| 356 { | 361 { |
| (...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 507 # base.make_stop_form = hack_stop(base.make_stop_form) | 512 # base.make_stop_form = hack_stop(base.make_stop_form) |
| 508 | 513 |
| 509 | 514 |
| 510 ####### PROJECT IDENTITY | 515 ####### PROJECT IDENTITY |
| 511 | 516 |
| 512 # The 'projectURL' string will be used to provide a link | 517 # The 'projectURL' string will be used to provide a link |
| 513 # from buildbot HTML pages to your project's home page. | 518 # from buildbot HTML pages to your project's home page. |
| 514 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage' | 519 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage' |
| 515 | 520 |
| 516 # vi: set ts=4 sts=2 sw=2 et: | 521 # vi: set ts=4 sts=2 sw=2 et: |
| OLD | NEW |