# -*- python -*- # ex: set syntax=python: # Copyright (c) 2012 The Chromium Authors. All rights reserved. # Use of this source code is governed by a BSD-style license that can be # found in the LICENSE file. # See master.experimental/slaves.cfg for documentation. def linux(): return [ { 'master': 'TryServer', 'os': 'linux', 'version': 'lucid', 'bits': '64', 'builder': 'linux', 'hostname': 'webrtc-cb-linux-slave-11', }, { 'master': 'TryServer', 'os': 'linux', 'version': 'lucid', 'bits': '64', 'builder': 'linux_rel', 'hostname': 'webrtc-cb-linux-slave-12', }, ] def mac(): return [ { 'master': 'TryServer', 'os': 'mac', 'version': '10.7', 'bits': '64', 'builder': 'mac', 'hostname': 'dhcp-172-28-249-129', }, { 'master': 'TryServer', 'os': 'mac', 'version': '10.7', 'bits': '64', 'builder': 'mac_rel', 'hostname': 'dhcp-172-28-249-145', }, ] def windows(): return [ { 'master': 'TryServer', 'os': 'win', 'version': 'server2008', 'bits': '64', 'builder': 'win', 'hostname': 'webrtc-win2k8-3', }, { 'master': 'TryServer', 'os': 'win', 'version': 'server2008', 'bits': '64', 'builder': 'win_rel', 'hostname': 'webrtc-win-x86', }, ] slaves = linux() + mac() + windows()