| 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 352 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 363 { | 363 { |
| 364 'name': 'linux_chromium_webkit_leak_variable', | 364 'name': 'linux_chromium_webkit_leak_variable', |
| 365 'factory': baseFactory('findit/chromium/compile'), | 365 'factory': baseFactory('findit/chromium/compile'), |
| 366 'slavebuilddir': 'linux_layout_leak', | 366 'slavebuilddir': 'linux_layout_leak', |
| 367 }, | 367 }, |
| 368 { | 368 { |
| 369 'name': 'linux_chromium_webkit_msan_variable', | 369 'name': 'linux_chromium_webkit_msan_variable', |
| 370 'factory': baseFactory('findit/chromium/compile'), | 370 'factory': baseFactory('findit/chromium/compile'), |
| 371 'slavebuilddir': 'linux_layout_msan', | 371 'slavebuilddir': 'linux_layout_msan', |
| 372 }, | 372 }, |
| 373 { |
| 374 'name': 'linux_chromiumos_full_variable', |
| 375 'factory': baseFactory('findit/chromium/compile'), |
| 376 'slavebuilddir': 'linux_chromeos', |
| 377 }, |
| 373 ] | 378 ] |
| 374 | 379 |
| 375 for board in chromeos_boards: | 380 for board in chromeos_boards: |
| 376 variable_builders.append({ | 381 variable_builders.append({ |
| 377 'name': 'chromeos_%s_variable' % (board,), | 382 'name': 'chromeos_%s_variable' % (board,), |
| 378 'factory': baseFactory('findit/chromium/compile'), | 383 'factory': baseFactory('findit/chromium/compile'), |
| 379 'slavebuilddir': 'chromeos_%s' % (board,), | 384 'slavebuilddir': 'chromeos_%s' % (board,), |
| 380 }) | 385 }) |
| 381 | 386 |
| 382 c['builders'] = [ | 387 c['builders'] = [ |
| (...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 512 # base.make_stop_form = hack_stop(base.make_stop_form) | 517 # base.make_stop_form = hack_stop(base.make_stop_form) |
| 513 | 518 |
| 514 | 519 |
| 515 ####### PROJECT IDENTITY | 520 ####### PROJECT IDENTITY |
| 516 | 521 |
| 517 # The 'projectURL' string will be used to provide a link | 522 # The 'projectURL' string will be used to provide a link |
| 518 # from buildbot HTML pages to your project's home page. | 523 # from buildbot HTML pages to your project's home page. |
| 519 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage' | 524 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage' |
| 520 | 525 |
| 521 # vi: set ts=4 sts=2 sw=2 et: | 526 # vi: set ts=4 sts=2 sw=2 et: |
| OLD | NEW |