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
18 lines
321 B
Python
18 lines
321 B
Python
load("@bazel_skylib//rules:build_test.bzl", "build_test")
|
|
|
|
exports_files(
|
|
[
|
|
"BUILD.pcre.bazel",
|
|
],
|
|
visibility = ["//visibility:public"],
|
|
)
|
|
|
|
build_test(
|
|
name = "pcre_build_test",
|
|
tags = ["manual"], # Linux Only
|
|
targets = [
|
|
"@pcre//:pcre",
|
|
],
|
|
visibility = ["//:__pkg__"],
|
|
)
|