Update Android trybots in the default try job list.

This updates the default set of trybots that are used
when no bot names are specified when submitting a try job.

TBR=andrew@webrtc.org
TEST=Ran git try -t compile and verified it was sent to all bots.
BUG=none

Review URL: https://webrtc-codereview.appspot.com/6289004

git-svn-id: http://webrtc.googlecode.com/svn/trunk@5329 4adac7df-926f-26a2-2b94-8c16560cd09d
This commit is contained in:
kjellander@webrtc.org 2013-12-20 21:20:42 +00:00
parent 7fb75ecbd4
commit cf2b3acc48

View File

@ -158,6 +158,11 @@ def CheckChangeOnCommit(input_api, output_api):
def GetPreferredTrySlaves(project, change):
files = change.LocalPaths()
android_bots = [
'android',
'android_rel',
'android_clang',
]
ios_bots = [
'ios',
'ios_rel',
@ -191,4 +196,4 @@ def GetPreferredTrySlaves(project, change):
if all(re.search('(^|[/_])win[/_.]', f) for f in files):
return win_bots
return ['android_ndk'] + ios_bots + linux_bots + mac_bots + win_bots
return android_bots + ios_bots + linux_bots + mac_bots + win_bots