blob: b33606a5db975cc06b9c5860a354ccaf67f3b781 [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)
Austin Schuh0a96ea32022-01-01 22:29:30 -080022
23constraint_value(
24 name = "cortex_m0plus",
25 constraint_setting = ":hardware",
26)