mirror of
https://github.com/bazel-contrib/rules_foreign_cc
synced 2024-11-30 16:42:07 +00:00
e285764b78
* Reorganized examples * Documentation * Third party
9 lines
168 B
Python
9 lines
168 B
Python
load("@rules_cc//cc:defs.bzl", "cc_test")
|
|
|
|
cc_test(
|
|
name = "test_c_ares",
|
|
srcs = ["c-ares-test.cpp"],
|
|
visibility = ["//:__pkg__"],
|
|
deps = ["@cares"],
|
|
)
|