Merge 3b7b31fa4b92c04eaf2c7a2f28d06b9c6a8bfab1 into 7917641ff965959afae189afb5f052524395525c

This commit is contained in:
DoDo 2025-09-03 15:31:39 +02:00 committed by GitHub
commit 07d2b70261
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 17 additions and 1 deletions

View File

@ -30,12 +30,23 @@
#
# Bazel Build for Google C++ Testing Framework(Google Test)
package(default_visibility = ["//visibility:public"])
load("@rules_license//rules:license.bzl", "license")
package(
default_applicable_licenses = [":license"],
default_visibility = ["//visibility:public"],
)
licenses(["notice"])
exports_files(["LICENSE"])
license(
name = "license",
license_kinds = ["@rules_license//licenses/spdx:BSD-3-Clause"],
license_text = "LICENSE",
)
config_setting(
name = "qnx",
constraint_values = ["@platforms//os:qnx"],

View File

@ -58,6 +58,11 @@ bazel_dep(
dev_dependency = True,
)
bazel_dep(
name = "rules_license",
version = "1.0.0",
)
# https://rules-python.readthedocs.io/en/stable/toolchains.html#library-modules-with-dev-only-python-usage
python = use_extension(
"@rules_python//python/extensions:python.bzl",