diff options
author | ajwong@chromium.org <ajwong@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-11-29 21:39:34 +0000 |
---|---|---|
committer | ajwong@chromium.org <ajwong@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-11-29 21:39:34 +0000 |
commit | 184757e78697771f93face526e797924de819d9e (patch) | |
tree | 7a4bda6e2cc84486a4aca52aa7c9ee6361f05aed /PRESUBMIT.py | |
parent | 060588ca2b55e9099d2fff51182947151f69ad0c (diff) | |
download | chromium_src-184757e78697771f93face526e797924de819d9e.zip chromium_src-184757e78697771f93face526e797924de819d9e.tar.gz chromium_src-184757e78697771f93face526e797924de819d9e.tar.bz2 |
Add win_shared and linux_shared builder into the default try bot set.
Component builds breakages are easy to introduce because you can accidentally add a cross-component dependency without any warning if you're doing a normal static build.
BUG=105750
TEST=none
Review URL: http://codereview.chromium.org/8726043
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@112034 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'PRESUBMIT.py')
-rw-r--r-- | PRESUBMIT.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/PRESUBMIT.py b/PRESUBMIT.py index 6f9f530..61c47a7 100644 --- a/PRESUBMIT.py +++ b/PRESUBMIT.py @@ -333,4 +333,4 @@ def GetPreferredTrySlaves(project, change): f.LocalPath().endswith(('.mm', '.m')) for f in change.AffectedFiles()) if only_objc_files: return ['mac'] - return ['win', 'linux', 'mac'] + return ['win', 'linux', 'mac', 'win_shared', 'linux_shared'] |