OLD | NEW |
1 # Copyright 2013 The Chromium Authors. All rights reserved. | 1 # Copyright 2013 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 # This recipe is intended to control all of the GPU testers on the | 5 # This recipe is intended to control all of the GPU testers on the |
6 # following waterfalls: | 6 # following waterfalls: |
7 # chromium.gpu | 7 # chromium.gpu |
8 # chromium.gpu.fyi | 8 # chromium.gpu.fyi |
9 # chromium.webkit | 9 # chromium.webkit |
10 # These testers are triggered by the builders on the same waterfall. | 10 # These testers are triggered by the builders on the same waterfall. |
(...skipping 28 matching lines...) Expand all Loading... |
39 api.test('%s_release' % plat) + | 39 api.test('%s_release' % plat) + |
40 api.properties.scheduled( | 40 api.properties.scheduled( |
41 build_config='Release', | 41 build_config='Release', |
42 mastername='chromium.gpu.testing', | 42 mastername='chromium.gpu.testing', |
43 buildername='%s tester' % plat, | 43 buildername='%s tester' % plat, |
44 buildnumber=776, | 44 buildnumber=776, |
45 parent_buildername='%s builder' % plat, | 45 parent_buildername='%s builder' % plat, |
46 parent_buildnumber=571, | 46 parent_buildnumber=571, |
47 parent_got_revision=160000, | 47 parent_got_revision=160000, |
48 parent_got_webkit_revision=10000, | 48 parent_got_webkit_revision=10000, |
| 49 # These would ordinarily be generated during the build step. |
| 50 swarm_hashes=dict( |
| 51 gl_tests='6e784864abbeeff7499c15f75b904851d633c187'), |
49 ) + | 52 ) + |
50 api.platform.name(plat) | 53 api.platform.name(plat) |
51 ) | 54 ) |
OLD | NEW |