| 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 684 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 695 'chrome_frame_br', | 695 'chrome_frame_br', |
| 696 'chromedriver_tests_br', | 696 'chromedriver_tests_br', |
| 697 'chromedriver2_unittests_br', | 697 'chromedriver2_unittests_br', |
| 698 'components_unittests_br', | 698 'components_unittests_br', |
| 699 'compositor_br', | 699 'compositor_br', |
| 700 'content_browsertests_br', | 700 'content_browsertests_br', |
| 701 'courgette_br', | 701 'courgette_br', |
| 702 'crypto_br', | 702 'crypto_br', |
| 703 'device_unittests_br', | 703 'device_unittests_br', |
| 704 'events_br', | 704 'events_br', |
| 705 'google_apis_unittests_br', |
| 705 'googleurl_br', | 706 'googleurl_br', |
| 706 'gpu_br', | 707 'gpu_br', |
| 707 'installer_br', | 708 'installer_br', |
| 708 'interactive_ui_tests_br', | 709 'interactive_ui_tests_br', |
| 709 'jingle_br', | 710 'jingle_br', |
| 710 'keyboard_unittests', | 711 'keyboard_unittests', |
| 711 'media_br', | 712 'media_br', |
| 712 'nacl_integration_br', | 713 'nacl_integration_br', |
| 713 'net_br', | 714 'net_br', |
| 714 'ppapi_unittests_br', | 715 'ppapi_unittests_br', |
| (...skipping 1667 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2382 # base.make_stop_form = hack_stop(base.make_stop_form) | 2383 # base.make_stop_form = hack_stop(base.make_stop_form) |
| 2383 | 2384 |
| 2384 | 2385 |
| 2385 ####### PROJECT IDENTITY | 2386 ####### PROJECT IDENTITY |
| 2386 | 2387 |
| 2387 # The 'projectURL' string will be used to provide a link | 2388 # The 'projectURL' string will be used to provide a link |
| 2388 # from buildbot HTML pages to your project's home page. | 2389 # from buildbot HTML pages to your project's home page. |
| 2389 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage' | 2390 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage' |
| 2390 | 2391 |
| 2391 # vi: set ts=4 sts=2 sw=2 et: | 2392 # vi: set ts=4 sts=2 sw=2 et: |
| OLD | NEW |