| 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 371 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 382 { | 382 { |
| 383 'name': 'linux_chromium_gn_chromeos_variable', | 383 'name': 'linux_chromium_gn_chromeos_variable', |
| 384 'factory': m_annotator.BaseFactory('findit/chromium/compile'), | 384 'factory': m_annotator.BaseFactory('findit/chromium/compile'), |
| 385 'slavebuilddir': 'linux_chromium_gn_chromeos', | 385 'slavebuilddir': 'linux_chromium_gn_chromeos', |
| 386 }, | 386 }, |
| 387 { | 387 { |
| 388 'name': 'linux_chromium_cast_variable', | 388 'name': 'linux_chromium_cast_variable', |
| 389 'factory': m_annotator.BaseFactory('findit/chromium/compile'), | 389 'factory': m_annotator.BaseFactory('findit/chromium/compile'), |
| 390 'slavebuilddir': 'linux_cast', | 390 'slavebuilddir': 'linux_cast', |
| 391 }, | 391 }, |
| 392 { |
| 393 'name': 'linux_chromium_webkit_variable', |
| 394 'factory': m_annotator.BaseFactory('findit/chromium/compile'), |
| 395 'slavebuilddir': 'linux_layout', |
| 396 }, |
| 397 { |
| 398 'name': 'linux_chromium_webkit_asan_variable', |
| 399 'factory': m_annotator.BaseFactory('findit/chromium/compile'), |
| 400 'slavebuilddir': 'linux_layout_asan', |
| 401 }, |
| 402 { |
| 403 'name': 'linux_chromium_webkit_leak_variable', |
| 404 'factory': m_annotator.BaseFactory('findit/chromium/compile'), |
| 405 'slavebuilddir': 'linux_layout_leak', |
| 406 }, |
| 407 { |
| 408 'name': 'linux_chromium_webkit_msan_variable', |
| 409 'factory': m_annotator.BaseFactory('findit/chromium/compile'), |
| 410 'slavebuilddir': 'linux_layout_msan', |
| 411 }, |
| 392 ] | 412 ] |
| 393 | 413 |
| 394 for board in chromeos_boards: | 414 for board in chromeos_boards: |
| 395 variable_builders.append({ | 415 variable_builders.append({ |
| 396 'name': 'chromeos_%s_variable' % (board,), | 416 'name': 'chromeos_%s_variable' % (board,), |
| 397 'factory': m_annotator.BaseFactory('findit/chromium/compile'), | 417 'factory': m_annotator.BaseFactory('findit/chromium/compile'), |
| 398 'slavebuilddir': 'chromeos_%s' % (board,), | 418 'slavebuilddir': 'chromeos_%s' % (board,), |
| 399 }) | 419 }) |
| 400 | 420 |
| 401 c['builders'] = [ | 421 c['builders'] = [ |
| (...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 533 # base.make_stop_form = hack_stop(base.make_stop_form) | 553 # base.make_stop_form = hack_stop(base.make_stop_form) |
| 534 | 554 |
| 535 | 555 |
| 536 ####### PROJECT IDENTITY | 556 ####### PROJECT IDENTITY |
| 537 | 557 |
| 538 # The 'projectURL' string will be used to provide a link | 558 # The 'projectURL' string will be used to provide a link |
| 539 # from buildbot HTML pages to your project's home page. | 559 # from buildbot HTML pages to your project's home page. |
| 540 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage' | 560 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage' |
| 541 | 561 |
| 542 # vi: set ts=4 sts=2 sw=2 et: | 562 # vi: set ts=4 sts=2 sw=2 et: |
| OLD | NEW |