| 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 socket | 10 import socket |
| (...skipping 674 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 685 'ash_unittests_br', | 685 'ash_unittests_br', |
| 686 'aura_br', | 686 'aura_br', |
| 687 'base_unittests_br', | 687 'base_unittests_br', |
| 688 'blink_platform_unittests_br', | 688 'blink_platform_unittests_br', |
| 689 'browser_tests_br', | 689 'browser_tests_br', |
| 690 'buildrunner_tests', | 690 'buildrunner_tests', |
| 691 'cacheinvalidation_br', | 691 'cacheinvalidation_br', |
| 692 'cc_unittests_br', | 692 'cc_unittests_br', |
| 693 'check_deps2git_br', | 693 'check_deps2git_br', |
| 694 'check_deps_br', | 694 'check_deps_br', |
| 695 'chrome_frame_br', | |
| 696 'chromedriver_tests_br', | 695 'chromedriver_tests_br', |
| 697 'chromedriver2_unittests_br', | 696 'chromedriver2_unittests_br', |
| 698 'components_unittests_br', | 697 'components_unittests_br', |
| 699 'compositor_br', | 698 'compositor_br', |
| 700 'content_browsertests_br', | 699 'content_browsertests_br', |
| 701 'courgette_br', | 700 'courgette_br', |
| 702 'crypto_br', | 701 'crypto_br', |
| 703 'device_unittests_br', | 702 'device_unittests_br', |
| 704 'events_br', | 703 'events_br', |
| 705 'googleurl_br', | 704 'googleurl_br', |
| (...skipping 1676 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2382 # base.make_stop_form = hack_stop(base.make_stop_form) | 2381 # base.make_stop_form = hack_stop(base.make_stop_form) |
| 2383 | 2382 |
| 2384 | 2383 |
| 2385 ####### PROJECT IDENTITY | 2384 ####### PROJECT IDENTITY |
| 2386 | 2385 |
| 2387 # The 'projectURL' string will be used to provide a link | 2386 # The 'projectURL' string will be used to provide a link |
| 2388 # from buildbot HTML pages to your project's home page. | 2387 # from buildbot HTML pages to your project's home page. |
| 2389 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage' | 2388 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage' |
| 2390 | 2389 |
| 2391 # vi: set ts=4 sts=2 sw=2 et: | 2390 # vi: set ts=4 sts=2 sw=2 et: |
| OLD | NEW |