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 from buildbot.scheduler import Triggerable | 10 from buildbot.scheduler import Triggerable |
(...skipping 1298 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1309 ], | 1309 ], |
1310 goma=True, | 1310 goma=True, |
1311 factory_properties={ | 1311 factory_properties={ |
1312 'sharded_tests': win_sharded, | 1312 'sharded_tests': win_sharded, |
1313 'gclient_env': { | 1313 'gclient_env': { |
1314 'GYP_DEFINES': 'use_aura=1', | 1314 'GYP_DEFINES': 'use_aura=1', |
1315 }, | 1315 }, |
1316 }) | 1316 }) |
1317 | 1317 |
1318 # this matches the bot on the main waterfall soon | 1318 # this matches the bot on the main waterfall soon |
1319 b_win_ash = CreateBuilder( | 1319 b_win_ash = CreateBuilder( |
Peter Mayo
2012/12/17 21:23:48
Should we move this to win8 slaves too?
scottmg
2012/12/17 22:00:40
Yeah, that would make sense. I guess we'll need a
| |
1320 platform='win32', | 1320 platform='win32', |
1321 target='Debug', | 1321 target='Debug', |
1322 builder_name='win_ash', | 1322 builder_name='win_ash', |
1323 options=['aura_builder'], | 1323 options=['aura_builder'], |
1324 tests=[ | 1324 tests=[ |
1325 'ash_unittests', | 1325 'ash_unittests', |
1326 'aura', | 1326 'aura', |
1327 'compositor', | 1327 'compositor', |
1328 'views', | 1328 'views', |
1329 ], | 1329 ], |
1330 goma=True, | 1330 goma=True, |
1331 factory_properties={ | 1331 factory_properties={ |
1332 'gclient_env': { | 1332 'gclient_env': { |
1333 'GYP_DEFINES': 'use_ash=1', | 1333 'GYP_DEFINES': 'use_aura=1', |
1334 }, | 1334 }, |
1335 }) | 1335 }) |
1336 | 1336 |
1337 # browser_tests run for a hour. Please don't add them to the bot. | 1337 # browser_tests run for a hour. Please don't add them to the bot. |
1338 b_linux_asan = { | 1338 b_linux_asan = { |
1339 'name': 'linux_asan', | 1339 'name': 'linux_asan', |
1340 'factory': m_chromium_linux.ChromiumASANFactory( | 1340 'factory': m_chromium_linux.ChromiumASANFactory( |
1341 slave_type='Trybot', | 1341 slave_type='Trybot', |
1342 options=[ | 1342 options=[ |
1343 '--build-tool=ninja', | 1343 '--build-tool=ninja', |
(...skipping 595 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1939 ####### PROJECT IDENTITY | 1939 ####### PROJECT IDENTITY |
1940 | 1940 |
1941 # The 'projectURL' string will be used to provide a link | 1941 # The 'projectURL' string will be used to provide a link |
1942 # from buildbot HTML pages to your project's home page. | 1942 # from buildbot HTML pages to your project's home page. |
1943 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage' | 1943 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage' |
1944 | 1944 |
1945 # Buildbot master url: | 1945 # Buildbot master url: |
1946 c['buildbotURL'] = 'http://build.chromium.org/p/tryserver.chromium/' | 1946 c['buildbotURL'] = 'http://build.chromium.org/p/tryserver.chromium/' |
1947 | 1947 |
1948 # vi: set ts=4 sts=2 sw=2 et: | 1948 # vi: set ts=4 sts=2 sw=2 et: |
OLD | NEW |