Lines Matching refs:to
2 """Converts flag values to transition-safe primitives."""
10 A transition in Bazel is a way to force changes to the way the build is
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
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`
31 dictionary that tells `declare_transition()` which attrs to pull flag values
32 from. The common `src` attr tells the transition which build rule to apply
33 the transition to.
91 # This could be shared, but we don't in order to make it clearer that
99 # We don't want --custom_malloc to ever apply to the bootloader, so
105 # building the bootloader binaries themselves in order to avoid a
111 # This transition sets SDK configuration options required to build test binaries
119 # This could be shared, but we don't in order to make it clearer that
133 # This transition sets SDK configuration options required to build test binaries
139 # This could be shared, but we don't in order to make it clearer that
153 # This is a general purpose transition that applies the listed copt flags to
158 # This could be shared, but we don't in order to make it clearer that