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 |