| Index: tools/auto_bisect/bisect_perf_regression.py
|
| diff --git a/tools/auto_bisect/bisect_perf_regression.py b/tools/auto_bisect/bisect_perf_regression.py
|
| index 164e5b4427adfd9a35d05b55862c1fcb4a54414c..67530ea2dcd1e63e6ee75e25e00d3c8cdf608bcd 100755
|
| --- a/tools/auto_bisect/bisect_perf_regression.py
|
| +++ b/tools/auto_bisect/bisect_perf_regression.py
|
| @@ -2706,9 +2706,10 @@ class BisectOptions(object):
|
| group.add_argument('--output_buildbot_annotations', action='store_true',
|
| help='Add extra annotation output for buildbot.')
|
| 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" '
|
| - '(default), "x64" or "arm".')
|
| + '(default), "x64", "arm" or "arm64".')
|
| group.add_argument('--target_build_type', default='Release',
|
| choices=['Release', 'Debug', 'Release_x64'],
|
| help='The target build type. Choices are "Release" '
|
|
|