aboutsummaryrefslogtreecommitdiff
path: root/tools/rust_analyzer/3rdparty/crates/BUILD.libc-0.2.147.bazel
diff options
context:
space:
mode:
Diffstat (limited to 'tools/rust_analyzer/3rdparty/crates/BUILD.libc-0.2.147.bazel')
-rw-r--r--tools/rust_analyzer/3rdparty/crates/BUILD.libc-0.2.147.bazel16
1 files changed, 12 insertions, 4 deletions
diff --git a/tools/rust_analyzer/3rdparty/crates/BUILD.libc-0.2.147.bazel b/tools/rust_analyzer/3rdparty/crates/BUILD.libc-0.2.147.bazel
index c06ce710..7d42b099 100644
--- a/tools/rust_analyzer/3rdparty/crates/BUILD.libc-0.2.147.bazel
+++ b/tools/rust_analyzer/3rdparty/crates/BUILD.libc-0.2.147.bazel
@@ -13,9 +13,13 @@ package(default_visibility = ["//visibility:public"])
rust_library(
name = "libc",
- srcs = glob(["**/*.rs"]),
+ srcs = glob(
+ include = ["**/*.rs"],
+ allow_empty = False,
+ ),
compile_data = glob(
include = ["**"],
+ allow_empty = True,
exclude = [
"**/* *",
".tmp_git_root/**/*",
@@ -68,8 +72,11 @@ rust_library(
)
cargo_build_script(
- name = "libc_build_script",
- srcs = glob(["**/*.rs"]),
+ name = "libc_bs",
+ srcs = glob(
+ include = ["**/*.rs"],
+ allow_empty = False,
+ ),
crate_features = [
"default",
"extra_traits",
@@ -79,6 +86,7 @@ cargo_build_script(
crate_root = "build.rs",
data = glob(
include = ["**"],
+ allow_empty = True,
exclude = [
"**/* *",
".tmp_git_root/**/*",
@@ -105,6 +113,6 @@ cargo_build_script(
alias(
name = "build_script_build",
- actual = ":libc_build_script",
+ actual = ":libc_bs",
tags = ["manual"],
)