From a8d63f4c5b59e81e41031d5273332508e57ebeca Mon Sep 17 00:00:00 2001 From: John Millikin Date: Tue, 3 Sep 2024 13:12:28 +0900 Subject: [PATCH] Add OS constraint values for DragonFlyBSD, Redox, and Illumos --- os/BUILD | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/os/BUILD b/os/BUILD index 2ba8529..1b52f4a 100644 --- a/os/BUILD +++ b/os/BUILD @@ -28,6 +28,11 @@ constraint_value( constraint_setting = ":os", ) +constraint_value( + name = "dragonflybsd", + constraint_setting = ":os", +) + constraint_value( name = "haiku", constraint_setting = ":os", @@ -132,3 +137,13 @@ constraint_value( name = "uefi", constraint_setting = ":os", ) + +constraint_value( + name = "redox", + constraint_setting = ":os", +) + +constraint_value( + name = "illumos", + constraint_setting = ":os", +)