Lorenz Brun | 605efbe | 2021-09-28 14:01:01 +0200 | [diff] [blame] | 1 | def _build_efi_transition_impl(settings, attr): |
2 | """ | ||||
3 | Transition that enables building for an EFI environment. Currently ony supports C code. | ||||
4 | """ | ||||
5 | return { | ||||
6 | "//command_line_option:crosstool_top": "//build/toolchain/llvm-efi:efi_cc_suite", | ||||
7 | } | ||||
8 | |||||
9 | build_efi_transition = transition( | ||||
10 | implementation = _build_efi_transition_impl, | ||||
11 | inputs = [], | ||||
12 | outputs = [ | ||||
13 | "//command_line_option:crosstool_top", | ||||
14 | ], | ||||
15 | ) |