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

Unified Diff: PRESUBMIT.py

Issue 10808022: Add unit_tests bundle as a default compile target for Android. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 5 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 | build/all_android.gyp » ('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 009df4ce5a5cd0d55f1307976cb6f8d87d3c6bf5..ba38fedca0196e563c275661bb01302b3ff8329a 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
« no previous file with comments | « no previous file | build/all_android.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698