summaryrefslogtreecommitdiffstats
path: root/cc/PRESUBMIT.py
diff options
context:
space:
mode:
authordanakj@chromium.org <danakj@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-10-15 16:41:58 +0000
committerdanakj@chromium.org <danakj@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-10-15 16:41:58 +0000
commit69085bc591f70cad8c7c8662c678f07602aa976c (patch)
treec65ee666a1f9b70a5c791453010555742ab251c6 /cc/PRESUBMIT.py
parentc63d6ff1548400e133c35893a5d8ce4a074afc4b (diff)
downloadchromium_src-69085bc591f70cad8c7c8662c678f07602aa976c.zip
chromium_src-69085bc591f70cad8c7c8662c678f07602aa976c.tar.gz
chromium_src-69085bc591f70cad8c7c8662c678f07602aa976c.tar.bz2
Add a PRESUBMIT.py for cc/ that specifies default try bots.
The default bots build and run on linux debug in order to verify assertions are working as intended. We just run the unittests that test the cc/ code specifically. And we also run linux_layout_rel in order to get equal coverage of LayoutTests as we had from the WebKit EWS bots (though with more noise). Review URL: https://chromiumcodereview.appspot.com/11091047 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@161871 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'cc/PRESUBMIT.py')
-rw-r--r--cc/PRESUBMIT.py14
1 files changed, 14 insertions, 0 deletions
diff --git a/cc/PRESUBMIT.py b/cc/PRESUBMIT.py
new file mode 100644
index 0000000..0608901
--- /dev/null
+++ b/cc/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.
+
+"""Top-level presubmit script for cc.
+
+See http://dev.chromium.org/developers/how-tos/depottools/presubmit-scripts for
+details on the presubmit API built into gcl.
+"""
+
+def GetPreferredTrySlaves(project, change):
+ return [
+ 'linux_layout_rel',
+ ]