mirror of https://github.com/bazelbuild/rules_cc
13 lines
212 B
Python
13 lines
212 B
Python
|
load("//cc:cc_test.bzl", "cc_test")
|
||
|
|
||
|
licenses(["notice"])
|
||
|
|
||
|
cc_test(
|
||
|
name = "runfiles_test",
|
||
|
srcs = ["runfiles_test.cc"],
|
||
|
deps = [
|
||
|
"//cc/runfiles",
|
||
|
"@googletest//:gtest_main",
|
||
|
],
|
||
|
)
|