-
-
Notifications
You must be signed in to change notification settings - Fork 521
/
Copy pathBUILD
40 lines (35 loc) · 938 Bytes
/
BUILD
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
# We don't actually need an external repo to define Starlark settings. But
# Skylib provides convenience macros that reduce boilerplate, so we'll use that
# here.
#
# See https://bazel.build/extending/config and
# https://github.com/bazelbuild/bazel-skylib) for more info.
load("@bazel_skylib//rules:common_settings.bzl", "string_setting")
load(":defs.bzl", "my_rule")
string_setting(
name = "some-string",
build_setting_default = "abc",
)
my_rule(
name = "dont-do-transition",
do_transition = False,
)
my_rule(
name = "do-transition",
do_transition = True,
)
# This target will cause an issue because it tries to implement
# a rule transition that reads a configured attribute.
my_rule(
name = "will-break",
do_transition = select({
":true": True,
"//conditions:default": False,
}),
)
config_setting(
name = "true",
flag_values = {
":some-string": "abc",
},
)