2
0
Fork 0
mirror of https://github.com/bazel-contrib/rules_foreign_cc synced 2024-12-03 02:52:58 +00:00
rules_foreign_cc/examples/third_party/mesa/BUILD.libxrender.bazel

22 lines
404 B
Plaintext
Raw Normal View History

load("@rules_foreign_cc//foreign_cc:defs.bzl", "configure_make")
package(default_visibility = ["//visibility:public"])
filegroup(
name = "all_srcs",
srcs = glob(
include = ["**"],
exclude = ["*.bazel"],
),
)
configure_make(
name = "libxrender",
lib_source = ":all_srcs",
out_headers_only = True,
deps = [
"@libx11",
"@renderproto",
],
)