Lines Matching refs:a
8 """A helper that drastically simplifies declaration of a transition.
10 A transition in Bazel is a way to force changes to the way the build is
11 evaluated for all dependencies of a given rule.
16 a -> b -> c
18 Normally, if you set `defines` on a, they couldn't apply to b or c because
19 they are dependencies of a. There's no way for b or c to know about a's
20 settings, because they don't even know a exists!
22 We can fix this via a transition! If we put a transition in front of `a`
23 that sets --copts=-DFOO=42, we're telling Bazel to build a and all of its
30 you need to do is provide a set of attrs, and then a `flag_overrides`
92 # a transition is in use.
105 # building the bootloader binaries themselves in order to avoid a
120 # a transition is in use.
140 # a transition is in use.
153 # This is a general purpose transition that applies the listed copt flags to
159 # a transition is in use.