Also explicitly pass architecture for android bot.

R=johnmccutchan@google.com

Review URL: https://codereview.chromium.org/1412423002 .
This commit is contained in:
Ryan Macnak 2015-10-20 10:53:45 -07:00
parent cc8f64b824
commit f59cac524d

View file

@ -52,7 +52,9 @@ def BuildAndroid(build_info):
if os.path.exists('./out/lastHooksTargetOS.txt'):
os.remove('./out/lastHooksTargetOS.txt')
targets = ['runtime']
args = [sys.executable, './tools/build.py', '--mode=' + build_info.mode,
args = [sys.executable, './tools/build.py',
'--arch=' + build_info.arch,
'--mode=' + build_info.mode,
'--os=android'] + targets
print 'Building Android: %s' % (' '.join(args))
bot.RunProcess(args)