2
0
Fork 0
mirror of https://github.com/bazelbuild/rules_cc synced 2024-11-28 21:34:00 +00:00
rules_cc/cc/runfiles/BUILD

13 lines
285 B
Python
Raw Normal View History

load("@rules_cc//cc:cc_library.bzl", "cc_library")
licenses(["notice"])
cc_library(
name = "runfiles",
srcs = ["runfiles.cc"],
hdrs = ["runfiles.h"],
include_prefix = "rules_cc/cc/runfiles",
strip_include_prefix = ".",
visibility = ["//visibility:public"],
)