diff options
author | junov@chromium.org <junov@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-10-23 18:07:35 +0000 |
---|---|---|
committer | junov@chromium.org <junov@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-10-23 18:07:35 +0000 |
commit | e5b112169653322eaf6d7e8a7816753f919bf0f9 (patch) | |
tree | 7adc1997c7b7e93c2f5e7283bbbf44174c8913c9 /skia/PRESUBMIT.py | |
parent | ac1fad8f1f015eebd648f51529dcccf708fa6abc (diff) | |
download | chromium_src-e5b112169653322eaf6d7e8a7816753f919bf0f9.zip chromium_src-e5b112169653322eaf6d7e8a7816753f919bf0f9.tar.gz chromium_src-e5b112169653322eaf6d7e8a7816753f919bf0f9.tar.bz2 |
skia: Add extra bots to the default set of try bots for changes in skia/
This adds linux_layout_rel, win_gpu, linux_gpu, mac_gpu, and
mac_gpu_retina to the default set of bots to run on patches that touch
skia/ when doing "git cl try".
This has no effect on the commit queue bot set which is maintained
elsewhere by the infra team.
BUG=
Review URL: https://codereview.chromium.org/34493005
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@230471 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'skia/PRESUBMIT.py')
-rw-r--r-- | skia/PRESUBMIT.py | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/skia/PRESUBMIT.py b/skia/PRESUBMIT.py new file mode 100644 index 0000000..e22733c --- /dev/null +++ b/skia/PRESUBMIT.py @@ -0,0 +1,18 @@ +# Copyright 2013 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. + +"""Top-level presubmit script for skia/ + +See http://dev.chromium.org/developers/how-tos/depottools/presubmit-scripts +for more details about the presubmit API built into depot_tools. +""" + +def GetPreferredTrySlaves(project, change): + return [ + 'linux_gpu', + 'win_gpu', + 'mac_gpu', + 'mac_gpu_retina', + 'linux_layout_rel', + ] |