OLD | NEW |
1 #!/usr/bin/python | 1 #!/usr/bin/python |
2 | 2 |
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 """Chromium presubmit script for src/chrome/browser/ui/libgtk2ui. | 7 """Chromium presubmit script for src/chrome/browser/ui/libgtk2ui. |
8 | 8 |
9 See http://dev.chromium.org/developers/how-tos/depottools/presubmit-scripts | 9 See http://dev.chromium.org/developers/how-tos/depottools/presubmit-scripts |
10 for more details on the presubmit API built into gcl. | 10 for more details on the presubmit API built into gcl. |
11 """ | 11 """ |
12 | 12 |
13 def GetPreferredTrySlaves(): | 13 def GetPreferredTryMasters(project, change): |
14 return ['linux_rel'] | 14 return { |
| 15 'tryserver.chromium': { |
| 16 'linux_rel': set(['defaulttests']), |
| 17 } |
| 18 } |
OLD | NEW |