| 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_chromeos_asan_variable', | 342 'name': 'linux_chromium_chromeos_asan_variable', |
| 343 'factory': baseFactory('findit/chromium/compile'), | 343 'factory': baseFactory('findit/chromium/compile'), |
| 344 'slavebuilddir': 'linux_chromeos_asan', | 344 'slavebuilddir': 'linux_chromeos_asan', |
| 345 }, | 345 }, |
| 346 { | 346 { |
| 347 'name': 'linux_chromium_gn_chromeos_variable', | 347 'name': 'linux_chromium_gn_chromeos_variable', |
| 348 'factory': baseFactory('findit/chromium/compile'), | 348 'factory': baseFactory('findit/chromium/compile'), |
| 349 'slavebuilddir': 'linux_chromium_gn_chromeos', | 349 'slavebuilddir': 'linux_chromium_gn_chromeos', |
| 350 }, | 350 }, |
| 351 { | 351 { |
| 352 'name': 'linux_chromium_blimp_variable', |
| 353 'factory': baseFactory('findit/chromium/compile'), |
| 354 'slavebuilddir': 'linux_blimp', |
| 355 }, |
| 356 { |
| 352 'name': 'linux_chromium_cast_variable', | 357 'name': 'linux_chromium_cast_variable', |
| 353 'factory': baseFactory('findit/chromium/compile'), | 358 'factory': baseFactory('findit/chromium/compile'), |
| 354 'slavebuilddir': 'linux_cast', | 359 'slavebuilddir': 'linux_cast', |
| 355 }, | 360 }, |
| 356 { | 361 { |
| 357 'name': 'linux_chromium_webkit_variable', | 362 'name': 'linux_chromium_webkit_variable', |
| 358 'factory': baseFactory('findit/chromium/compile'), | 363 'factory': baseFactory('findit/chromium/compile'), |
| 359 'slavebuilddir': 'linux_layout', | 364 'slavebuilddir': 'linux_layout', |
| 360 }, | 365 }, |
| 361 { | 366 { |
| (...skipping 158 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 520 # base.make_stop_form = hack_stop(base.make_stop_form) | 525 # base.make_stop_form = hack_stop(base.make_stop_form) |
| 521 | 526 |
| 522 | 527 |
| 523 ####### PROJECT IDENTITY | 528 ####### PROJECT IDENTITY |
| 524 | 529 |
| 525 # The 'projectURL' string will be used to provide a link | 530 # The 'projectURL' string will be used to provide a link |
| 526 # from buildbot HTML pages to your project's home page. | 531 # from buildbot HTML pages to your project's home page. |
| 527 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage' | 532 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage' |
| 528 | 533 |
| 529 # vi: set ts=4 sts=2 sw=2 et: | 534 # vi: set ts=4 sts=2 sw=2 et: |
| OLD | NEW |