mirror of
https://github.com/bazel-contrib/rules_foreign_cc
synced 2024-11-27 02:43:28 +00:00
e285764b78
* Reorganized examples * Documentation * Third party
17 lines
293 B
Python
17 lines
293 B
Python
load("@bazel_skylib//rules:build_test.bzl", "build_test")
|
|
|
|
exports_files(
|
|
[
|
|
"BUILD.curl.bazel",
|
|
],
|
|
visibility = ["//visibility:public"],
|
|
)
|
|
|
|
build_test(
|
|
name = "libgit2_build_test",
|
|
targets = [
|
|
"@libgit2//:libgit2",
|
|
],
|
|
visibility = ["//:__pkg__"],
|
|
)
|