| OLD | NEW |
| 1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 from buildbot import locks | 5 from buildbot import locks |
| 6 from buildbot.changes import svnpoller | 6 from buildbot.changes import svnpoller |
| 7 from buildbot.scheduler import Dependent | 7 from buildbot.scheduler import Dependent |
| 8 from buildbot.scheduler import Nightly | 8 from buildbot.scheduler import Nightly |
| 9 from buildbot.scheduler import Periodic | 9 from buildbot.scheduler import Periodic |
| 10 from buildbot.scheduler import Scheduler | 10 from buildbot.scheduler import Scheduler |
| (...skipping 238 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 249 'full-build-win32.zip') | 249 'full-build-win32.zip') |
| 250 | 250 |
| 251 chromium_chromeos_asan_archive = master_config.GetArchiveUrl( | 251 chromium_chromeos_asan_archive = master_config.GetArchiveUrl( |
| 252 'ChromiumFYI', | 252 'ChromiumFYI', |
| 253 'Chromium OS ASAN Builder', | 253 'Chromium OS ASAN Builder', |
| 254 'chromium-rel-chromeos-asan-builder', | 254 'chromium-rel-chromeos-asan-builder', |
| 255 'linux') | 255 'linux') |
| 256 | 256 |
| 257 valgrind_gyp_defines = chromium_factory.ChromiumFactory.MEMORY_TOOLS_GYP_DEFINES | 257 valgrind_gyp_defines = chromium_factory.ChromiumFactory.MEMORY_TOOLS_GYP_DEFINES |
| 258 pin_gyp_defines = chromium_factory.ChromiumFactory.MEMORY_TOOLS_GYP_DEFINES | 258 pin_gyp_defines = chromium_factory.ChromiumFactory.MEMORY_TOOLS_GYP_DEFINES |
| 259 drmemory_gyp_defines = chromium_factory.ChromiumFactory.MEMORY_TOOLS_GYP_DEFINES | 259 drmemory_gyp_defines = chromium_factory.ChromiumFactory.DR_MEMORY_GYP_DEFINES |
| 260 | 260 |
| 261 # Running out of address space on 10.5... try to buy some time. | 261 # Running out of address space on 10.5... try to buy some time. |
| 262 valgrind_mac_gyp_defines = valgrind_gyp_defines + ' enable_svg=0' | 262 valgrind_mac_gyp_defines = valgrind_gyp_defines + ' enable_svg=0' |
| 263 | 263 |
| 264 # The identifier of the factory is the build configuration. If two factories | 264 # The identifier of the factory is the build configuration. If two factories |
| 265 # are using the same build configuration, they should have the same identifier. | 265 # are using the same build configuration, they should have the same identifier. |
| 266 f_chromium_rel_builder = win_build().ChromiumFactory( | 266 f_chromium_rel_builder = win_build().ChromiumFactory( |
| 267 slave_type='Builder', | 267 slave_type='Builder', |
| 268 project='all.sln;chromium_builder', | 268 project='all.sln;chromium_builder', |
| 269 factory_properties={'gclient_env': {'GYP_DEFINES': 'fastbuild=1'}}) | 269 factory_properties={'gclient_env': {'GYP_DEFINES': 'fastbuild=1'}}) |
| (...skipping 1058 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1328 extraRecipients=['drmemory-team+fyibots@google.com'], | 1328 extraRecipients=['drmemory-team+fyibots@google.com'], |
| 1329 lookup=master_utils.FilterDomain(), | 1329 lookup=master_utils.FilterDomain(), |
| 1330 forgiving_steps=[], | 1330 forgiving_steps=[], |
| 1331 use_getname=True)) | 1331 use_getname=True)) |
| 1332 | 1332 |
| 1333 | 1333 |
| 1334 ####### PROJECT IDENTITY | 1334 ####### PROJECT IDENTITY |
| 1335 | 1335 |
| 1336 # Buildbot master url: | 1336 # Buildbot master url: |
| 1337 c['buildbotURL'] = 'http://build.chromium.org/p/chromium.fyi/' | 1337 c['buildbotURL'] = 'http://build.chromium.org/p/chromium.fyi/' |
| OLD | NEW |