blob: ebc97ec7fc642448da97afdd63ea860b5ef4ceb4 [file] [log] [blame]
<%include file="header.mako" />
% for arch, boards in sorted(data.iteritems()):
${'else ' if not loop.first else ''}if (target_cpu == "${arch}") {
zircon_boards = [
% for board in boards:
"${board}",
% endfor
]
}
% endfor
else {
assert(false, "Unsupported architecture: $target_cpu.")
}