| 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 331 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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', | 347 'name': 'linux_chromium_variable_32', |
| 348 'factory': m_annotator.BaseFactory('findit/chromium/compile'), | 348 'factory': m_annotator.BaseFactory('findit/chromium/compile'), |
| 349 'slavebuilddir': 'linux_32', | 349 'slavebuilddir': 'linux_32', |
| 350 }, | 350 }, |
| 351 { | 351 { |
| 352 'name': 'linux_chromium_variable_clobber', |
| 353 'factory': m_annotator.BaseFactory('findit/chromium/compile'), |
| 354 'slavebuilddir': 'linux_clobber', |
| 355 }, |
| 356 { |
| 357 'name': 'linux_chromium_variable_32_clobber', |
| 358 'factory': m_annotator.BaseFactory('findit/chromium/compile'), |
| 359 'slavebuilddir': 'linux_clobber', |
| 360 }, |
| 361 { |
| 352 'name': 'linux_chromium_asan_variable', | 362 'name': 'linux_chromium_asan_variable', |
| 353 'factory': m_annotator.BaseFactory('findit/chromium/compile'), | 363 'factory': m_annotator.BaseFactory('findit/chromium/compile'), |
| 354 'slavebuilddir': 'linux_asan', | 364 'slavebuilddir': 'linux_asan', |
| 355 }, | 365 }, |
| 356 { | 366 { |
| 357 'name': 'linux_chromium_chromeos_variable', | 367 'name': 'linux_chromium_chromeos_variable', |
| 358 'factory': m_annotator.BaseFactory('findit/chromium/compile'), | 368 'factory': m_annotator.BaseFactory('findit/chromium/compile'), |
| 359 'slavebuilddir': 'linux_chromeos', | 369 'slavebuilddir': 'linux_chromeos', |
| 360 }, | 370 }, |
| 361 { | 371 { |
| (...skipping 155 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 517 # base.make_stop_form = hack_stop(base.make_stop_form) | 527 # base.make_stop_form = hack_stop(base.make_stop_form) |
| 518 | 528 |
| 519 | 529 |
| 520 ####### PROJECT IDENTITY | 530 ####### PROJECT IDENTITY |
| 521 | 531 |
| 522 # The 'projectURL' string will be used to provide a link | 532 # The 'projectURL' string will be used to provide a link |
| 523 # from buildbot HTML pages to your project's home page. | 533 # from buildbot HTML pages to your project's home page. |
| 524 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage' | 534 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage' |
| 525 | 535 |
| 526 # vi: set ts=4 sts=2 sw=2 et: | 536 # vi: set ts=4 sts=2 sw=2 et: |
| OLD | NEW |