summaryrefslogtreecommitdiffstats
path: root/PRESUBMIT.py
diff options
context:
space:
mode:
Diffstat (limited to 'PRESUBMIT.py')
-rw-r--r--PRESUBMIT.py6
1 files changed, 2 insertions, 4 deletions
diff --git a/PRESUBMIT.py b/PRESUBMIT.py
index 009df4c..ba38fed 100644
--- a/PRESUBMIT.py
+++ b/PRESUBMIT.py
@@ -510,12 +510,10 @@ def GetPreferredTrySlaves(project, change):
if all(re.search('[/_]android[/_.]', f) for f in files):
return ['android']
- trybots = ['win_rel', 'linux_rel', 'mac_rel', 'linux_clang:compile']
+ trybots = ['win_rel', 'linux_rel', 'mac_rel', 'linux_clang:compile',
+ 'android']
# match things like aurax11.cc or aura_oak.cc
if any(re.search('[/_]aura', f) for f in files):
trybots.append('linux_chromeos')
- if not all(f.startswith('chrome/') for f in files):
- trybots.append('android')
-
return trybots