blob: 93c3e274a5b6635aa49c43af69e092cff90b02a6 [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(
James Kuszmaul5a728562023-12-28 21:45:01 -080024 name = "cortex-m4f-imu",
25 constraint_setting = ":hardware",
26)
27
28constraint_value(
Austin Schuh0a96ea32022-01-01 22:29:30 -080029 name = "cortex_m0plus",
30 constraint_setting = ":hardware",
31)