summaryrefslogtreecommitdiffstats
path: root/crypto
diff options
context:
space:
mode:
authorjoth@chromium.org <joth@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-01-25 18:50:48 +0000
committerjoth@chromium.org <joth@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-01-25 18:50:48 +0000
commiteec00e07d8e50d260249eab6cbefc976cc184683 (patch)
tree636a2f7c542bd7e42e7d76e31f6911d94a1287a8 /crypto
parent349ddad3a76a844bd520df534d98ad9c5eff1adb (diff)
downloadchromium_src-eec00e07d8e50d260249eab6cbefc976cc184683.zip
chromium_src-eec00e07d8e50d260249eab6cbefc976cc184683.tar.gz
chromium_src-eec00e07d8e50d260249eab6cbefc976cc184683.tar.bz2
Add crypto pre-submit that will add the openssl builder to the default try-bot list.
BUG=None TEST=git try should run a linux_redux try job too. Review URL: http://codereview.chromium.org/9235031 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@119094 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'crypto')
-rw-r--r--crypto/PRESUBMIT.py14
1 files changed, 14 insertions, 0 deletions
diff --git a/crypto/PRESUBMIT.py b/crypto/PRESUBMIT.py
new file mode 100644
index 0000000..7d0a135
--- /dev/null
+++ b/crypto/PRESUBMIT.py
@@ -0,0 +1,14 @@
+# 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.
+
+"""Chromium presubmit script for src/net.
+
+See http://dev.chromium.org/developers/how-tos/depottools/presubmit-scripts
+for more details on the presubmit API built into gcl.
+"""
+
+def GetPreferredTrySlaves(project, change):
+ # Changes in crypto often need a corresponding OpenSSL edit.
+ return ['linux_redux']
+