mirror of https://github.com/bazelbuild/rules_cc
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"])
|