mirror of
https://github.com/bazelbuild/rules_cc
synced 2024-11-27 20:43:26 +00:00
0d68932a68
PiperOrigin-RevId: 506908397 Change-Id: I4571c9e947b5878519d5ec291d2fc58566159c84
16 lines
317 B
Python
16 lines
317 B
Python
load("//tools/build_defs/license:license.bzl", "license")
|
|
|
|
package(
|
|
default_applicable_licenses = ["//third_party/bazel_rules/rules_cc:license"],
|
|
default_visibility = ["//visibility:public"],
|
|
)
|
|
|
|
license(
|
|
name = "license",
|
|
package_name = "rules_cc",
|
|
)
|
|
|
|
licenses(["notice"])
|
|
|
|
exports_files(["LICENSE"])
|