Commit 5d4a7fa0 authored by prasadv's avatar prasadv Committed by Commit bot

Add arm64 target type to bisect jobs

BUG=488688

Review URL: https://codereview.chromium.org/1163323010

Cr-Commit-Position: refs/heads/master@{#333753}
parent 6e9fcfb4
...@@ -2706,9 +2706,10 @@ class BisectOptions(object): ...@@ -2706,9 +2706,10 @@ class BisectOptions(object):
group.add_argument('--output_buildbot_annotations', action='store_true', group.add_argument('--output_buildbot_annotations', action='store_true',
help='Add extra annotation output for buildbot.') help='Add extra annotation output for buildbot.')
group.add_argument('--target_arch', default='ia32', group.add_argument('--target_arch', default='ia32',
dest='target_arch', choices=['ia32', 'x64', 'arm'], dest='target_arch',
choices=['ia32', 'x64', 'arm', 'arm64'],
help='The target build architecture. Choices are "ia32" ' help='The target build architecture. Choices are "ia32" '
'(default), "x64" or "arm".') '(default), "x64", "arm" or "arm64".')
group.add_argument('--target_build_type', default='Release', group.add_argument('--target_build_type', default='Release',
choices=['Release', 'Debug', 'Release_x64'], choices=['Release', 'Debug', 'Release_x64'],
help='The target build type. Choices are "Release" ' help='The target build type. Choices are "Release" '
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment