blob: 8df9cb5ae01ed92ff2acabc2ad64db02849f29a8 [file] [log] [blame]
# Copyright 2018 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.
# This is a .pyl, or "Python Literal", file. You can treat it just like a
# .json file, with the following exceptions:
# * all keys must be quoted (use single quotes, please);
# * comments are allowed, using '#' syntax; and
# * trailing commas are allowed.
# The swarming mixins known to exist. These can be applied to a waterfall,
# builder, or test. The mixins are copied verbatim into the test, with one
# exception; the 'dimensions' key. All values in the 'dimensions' key are
# applied to every 'dimension_set' in a test, creating one if no dimension_set
# already exists.
{
'arm_tester': {
'dimensions': {
'cpu': 'armv7l-32',
}
},
'linux-trusty': {
'dimensions': {
'os': 'Ubuntu-14.04',
}
},
'mac_10.10': {
'dimensions': {
'os': 'Mac-10.10',
}
},
'mac_10.11': {
'dimensions': {
'os': 'Mac-10.11',
}
},
'mac_10.13': {
'dimensions': {
'os': 'Mac-10.13',
}
},
'mac_mini_10.12': {
'dimensions': {
'gpu': '8086:0a2e',
'os': 'Mac-10.12.6',
}
},
'no_gpu': {
'dimensions': {
'gpu': 'none',
}
},
}