2
0
Fork 0
mirror of https://github.com/bazelbuild/platforms synced 2024-11-28 15:33:39 +00:00
platforms/BUILD
Tony Aiuto ce09fb7f5c - bump dependency on rules_license to 0.0.4
- That picks up version that users cfg=exec instead of cfg=host
  - It still works with bazel 5.x. The next rules_license might not.
- bump our version to 0.0.7 for next release
  - add presubmit check that we did not mistmatch the license
2023-02-09 10:42:00 -05:00

44 lines
976 B
Python

load("@rules_license//rules:license.bzl", "license")
package(
default_applicable_licenses = [":license"],
default_visibility = ["//visibility:public"],
)
license(
name = "license",
license_kinds = [
"@rules_license//licenses/spdx:Apache-2.0"
],
license_text = "LICENSE",
)
exports_files([
"LICENSE",
"MODULE.bazel",
])
filegroup(
name = "srcs",
srcs = [
"BUILD",
"WORKSPACE",
"//cpu:srcs",
"//os:srcs",
],
)
# For use in Incompatible Target Skipping:
# https://docs.bazel.build/versions/main/platforms.html#skipping-incompatible-targets
#
# Specifically this lets targets declare incompatibility with some set of
# platforms. See
# https://docs.bazel.build/versions/main/platforms.html#more-expressive-constraints
# for some more details.
constraint_setting(name = "incompatible_setting")
constraint_value(
name = "incompatible",
constraint_setting = ":incompatible_setting",
)