blob: 521b243db101e9a483565519f195754b731b8fe2 [file] [log] [blame]
Philipp Schraderdada1072020-11-24 11:34:46 -08001# Additional constraint values not available in @platforms. Use these in things
2# like select() statements or target_compatible_with.
3
4package(default_visibility = ["//visibility:public"])
5
6constraint_setting(name = "hardware")
7
8constraint_value(
9 name = "raspberry_pi",
10 constraint_setting = ":hardware",
11)
12
13constraint_value(
14 name = "roborio",
15 constraint_setting = ":hardware",
16)
17
18constraint_value(
19 name = "cortex_m4f",
20 constraint_setting = ":hardware",
21)