mirror of
https://github.com/bazelbuild/rules_cc
synced 2024-11-25 17:31:30 +00:00
06112c7d9e
Instead, add an alias to the Bazel-provided runfiles library under //cc/runfiles, following https://bazel.build/rules/deploying. Closes #162 PiperOrigin-RevId: 500929486 Change-Id: I3290c2b836af2313fbf45459c81af24fbde877d0
8 lines
145 B
Python
8 lines
145 B
Python
licenses(["notice"])
|
|
|
|
alias(
|
|
name = "runfiles",
|
|
actual = "@bazel_tools//tools/cpp/runfiles",
|
|
visibility = ["//visibility:public"],
|
|
)
|