Change default target to "create_sdk".

Currently the "all" target can lead to build errors and is unsupported,
so fall back to a supported target instead.

Change-Id: I925a785e4b81ab92e99c3842cb81c338c5a1d990
Reviewed-on: https://dart-review.googlesource.com/c/87403
Auto-Submit: Stevie Strickland <sstrickl@google.com>
Reviewed-by: Zach Anderson <zra@google.com>
Commit-Queue: Stevie Strickland <sstrickl@google.com>
This commit is contained in:
Stevie Strickland 2018-12-17 18:09:07 +00:00 committed by commit-bot@chromium.org
parent 666eee40c7
commit 4afb45f5b8

View file

@ -301,9 +301,10 @@ def Main():
if not ProcessOptions(options, args):
parser.print_help()
return 1
# Determine which targets to build. By default we build the "all" target.
# Determine which targets to build. The default is the "create_sdk" target,
# as the "all" target is unsupported and not built on any of the bots.
if len(args) == 0:
targets = ['all']
targets = ['create_sdk']
else:
targets = args