| 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 345 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 356 { | 356 { |
| 357 'name': 'linux_chromium_chromeos_asan_variable', | 357 'name': 'linux_chromium_chromeos_asan_variable', |
| 358 'factory': m_annotator.BaseFactory('findit/chromium/compile'), | 358 'factory': m_annotator.BaseFactory('findit/chromium/compile'), |
| 359 'slavebuilddir': 'linux_chromeos_asan', | 359 'slavebuilddir': 'linux_chromeos_asan', |
| 360 }, | 360 }, |
| 361 { | 361 { |
| 362 'name': 'linux_chromium_gn_chromeos_variable', | 362 'name': 'linux_chromium_gn_chromeos_variable', |
| 363 'factory': m_annotator.BaseFactory('findit/chromium/compile'), | 363 'factory': m_annotator.BaseFactory('findit/chromium/compile'), |
| 364 'slavebuilddir': 'linux_chromium_gn_chromeos', | 364 'slavebuilddir': 'linux_chromium_gn_chromeos', |
| 365 }, | 365 }, |
| 366 { |
| 367 'name': 'linux_chromium_cast_variable', |
| 368 'factory': m_annotator.BaseFactory('findit/chromium/compile'), |
| 369 'slavebuilddir': 'linux_cast', |
| 370 }, |
| 366 ] | 371 ] |
| 367 | 372 |
| 368 for board in chromeos_boards: | 373 for board in chromeos_boards: |
| 369 variable_builders.append({ | 374 variable_builders.append({ |
| 370 'name': 'chromeos_%s_variable' % (board,), | 375 'name': 'chromeos_%s_variable' % (board,), |
| 371 'factory': m_annotator.BaseFactory('findit/chromium/compile'), | 376 'factory': m_annotator.BaseFactory('findit/chromium/compile'), |
| 372 'slavebuilddir': 'chromeos_%s' % (board,), | 377 'slavebuilddir': 'chromeos_%s' % (board,), |
| 373 }) | 378 }) |
| 374 | 379 |
| 375 c['builders'] = [ | 380 c['builders'] = [ |
| (...skipping 131 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 |