Commit 31b6c469 authored by dcheng's avatar dcheng Committed by Commit bot

Don't explode if --tools or --extra-tools isn't specified.

BUG=none

Review-Url: https://codereview.chromium.org/2618633005
Cr-Commit-Position: refs/heads/master@{#441846}
parent 5762217e
...@@ -847,7 +847,7 @@ def main(): ...@@ -847,7 +847,7 @@ def main():
help='print current clang version (e.g. x.y.z) and exit.') help='print current clang version (e.g. x.y.z) and exit.')
parser.add_argument('--run-tests', action='store_true', parser.add_argument('--run-tests', action='store_true',
help='run tests after building; only for local builds') help='run tests after building; only for local builds')
parser.add_argument('--extra-tools', '--tools', nargs='*', parser.add_argument('--extra-tools', '--tools', nargs='*', default=[],
help='select additional chrome tools to build') help='select additional chrome tools to build')
parser.add_argument('--without-android', action='store_false', parser.add_argument('--without-android', action='store_false',
help='don\'t build Android ASan runtime (linux only)', help='don\'t build Android ASan runtime (linux only)',
......
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