mirror of
https://github.com/bazelbuild/platforms
synced 2024-11-27 02:43:23 +00:00
594eeffa57
There are notable differences from freebsd such that it warrants a constraint value.
63 lines
1 KiB
Python
63 lines
1 KiB
Python
# Standard constraint_setting and constraint_values to be used in platforms.
|
|
licenses(["notice"])
|
|
|
|
package(
|
|
default_visibility = ["//visibility:public"],
|
|
)
|
|
|
|
filegroup(
|
|
name = "srcs",
|
|
srcs = glob(["**"]),
|
|
)
|
|
|
|
# To add a new constraint_value see https://github.com/bazelbuild/platforms.
|
|
constraint_setting(name = "os")
|
|
|
|
constraint_value(
|
|
name = "freebsd",
|
|
constraint_setting = ":os",
|
|
)
|
|
|
|
constraint_value(
|
|
name = "openbsd",
|
|
constraint_setting = ":os",
|
|
)
|
|
|
|
constraint_value(
|
|
name = "android",
|
|
constraint_setting = ":os",
|
|
)
|
|
|
|
constraint_value(
|
|
name = "linux",
|
|
constraint_setting = ":os",
|
|
)
|
|
|
|
constraint_value(
|
|
name = "windows",
|
|
constraint_setting = ":os",
|
|
)
|
|
|
|
### Apple OS Values
|
|
|
|
constraint_value(
|
|
name = "ios",
|
|
constraint_setting = ":os",
|
|
)
|
|
|
|
# TODO(b/138656886): Rename this to macos instead of osx.
|
|
constraint_value(
|
|
name = "osx",
|
|
constraint_setting = ":os",
|
|
)
|
|
|
|
constraint_value(
|
|
name = "tvos",
|
|
constraint_setting = ":os",
|
|
)
|
|
|
|
constraint_value(
|
|
name = "watchos",
|
|
constraint_setting = ":os",
|
|
)
|