Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(284)

Unified Diff: PRESUBMIT.py

Issue 10831242: Trybots need to opt-in win_aura when aura files are changed (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | ash/PRESUBMIT.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: PRESUBMIT.py
diff --git a/PRESUBMIT.py b/PRESUBMIT.py
index 9df2cfd3d524c8e66fbe3774f42f6c02a20047ea..0eefbff4fe0a5ba8fde53071c7961338c184c19e 100644
--- a/PRESUBMIT.py
+++ b/PRESUBMIT.py
@@ -592,8 +592,11 @@ def GetPreferredTrySlaves(project, change):
'android']
# Match things like path/aura/file.cc and path/file_aura.cc.
- # Same for chromeos.
- if any(re.search('[/_](aura|chromeos)', f) for f in files):
- trybots += ['linux_chromeos', 'linux_chromeos_clang:compile']
+ # Same for ash and chromeos.
+ if any(re.search('[/_](ash|aura)', f) for f in files):
+ trybots += ['linux_chromeos', 'linux_chromeos_clang:compile', 'win_aura']
+ else:
+ if any(re.search('[/_]chromeos', f) for f in files):
+ trybots += ['linux_chromeos', 'linux_chromeos_clang:compile']
return trybots
« no previous file with comments | « no previous file | ash/PRESUBMIT.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698