Philipp Schrader | dada107 | 2020-11-24 11:34:46 -0800 | [diff] [blame] | 1 | # Additional constraint values not available in @platforms. Use these in things |
| 2 | # like select() statements or target_compatible_with. |
| 3 | |
| 4 | package(default_visibility = ["//visibility:public"]) |
| 5 | |
| 6 | constraint_setting(name = "hardware") |
| 7 | |
| 8 | constraint_value( |
| 9 | name = "raspberry_pi", |
| 10 | constraint_setting = ":hardware", |
| 11 | ) |
| 12 | |
| 13 | constraint_value( |
| 14 | name = "roborio", |
| 15 | constraint_setting = ":hardware", |
| 16 | ) |
| 17 | |
| 18 | constraint_value( |
| 19 | name = "cortex_m4f", |
| 20 | constraint_setting = ":hardware", |
| 21 | ) |
Austin Schuh | 0a96ea3 | 2022-01-01 22:29:30 -0800 | [diff] [blame] | 22 | |
| 23 | constraint_value( |
| 24 | name = "cortex_m0plus", |
| 25 | constraint_setting = ":hardware", |
| 26 | ) |