| 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 1684 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1695 ' ffmpeg_branding=ChromeOS proprietary_codecs=1' | 1695 ' ffmpeg_branding=ChromeOS proprietary_codecs=1' |
| 1696 ' component=shared_library')}}) | 1696 ' component=shared_library')}}) |
| 1697 } | 1697 } |
| 1698 | 1698 |
| 1699 b_win7_aura = CreateBuilder( | 1699 b_win7_aura = CreateBuilder( |
| 1700 platform='win32', | 1700 platform='win32', |
| 1701 target='Release', | 1701 target='Release', |
| 1702 builder_name='win7_aura', | 1702 builder_name='win7_aura', |
| 1703 options=['aura_builder'], | 1703 options=['aura_builder'], |
| 1704 tests=[ | 1704 tests=[ |
| 1705 'app_list_unittests_br', |
| 1705 'ash_unittests_br', | 1706 'ash_unittests_br', |
| 1706 'aura_br', | 1707 'aura_br', |
| 1707 'browser_tests_br', | 1708 'browser_tests_br', |
| 1708 'buildrunner_tests', | 1709 'buildrunner_tests', |
| 1709 'chrome_frame_net_tests_br', | 1710 'chrome_frame_net_tests_br', |
| 1710 'chrome_frame_tests_br', | 1711 'chrome_frame_tests_br', |
| 1711 'chrome_frame_unittests_br', | 1712 'chrome_frame_unittests_br', |
| 1712 'compositor_br', | 1713 'compositor_br', |
| 1713 'content_browsertests_br', | 1714 'content_browsertests_br', |
| 1714 'content_unittests_br', | 1715 'content_unittests_br', |
| (...skipping 675 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2390 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage' | 2391 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage' |
| 2391 | 2392 |
| 2392 # Buildbot master url: | 2393 # Buildbot master url: |
| 2393 if ActiveMaster.is_production_host: | 2394 if ActiveMaster.is_production_host: |
| 2394 c['buildbotURL'] = 'http://build.chromium.org/p/tryserver.chromium/' | 2395 c['buildbotURL'] = 'http://build.chromium.org/p/tryserver.chromium/' |
| 2395 else: | 2396 else: |
| 2396 c['buildbotURL'] = 'http://%s:%d/' % ( | 2397 c['buildbotURL'] = 'http://%s:%d/' % ( |
| 2397 socket.getfqdn(), ActiveMaster.master_port) | 2398 socket.getfqdn(), ActiveMaster.master_port) |
| 2398 | 2399 |
| 2399 # vi: set ts=4 sts=2 sw=2 et: | 2400 # vi: set ts=4 sts=2 sw=2 et: |
| OLD | NEW |