aboutsummaryrefslogtreecommitdiff
path: root/proto/prost/private/3rdparty/crates/BUILD.errno-dragonfly-0.1.2.bazel
diff options
context:
space:
mode:
Diffstat (limited to 'proto/prost/private/3rdparty/crates/BUILD.errno-dragonfly-0.1.2.bazel')
-rw-r--r--proto/prost/private/3rdparty/crates/BUILD.errno-dragonfly-0.1.2.bazel16
1 files changed, 12 insertions, 4 deletions
diff --git a/proto/prost/private/3rdparty/crates/BUILD.errno-dragonfly-0.1.2.bazel b/proto/prost/private/3rdparty/crates/BUILD.errno-dragonfly-0.1.2.bazel
index b9df414c..732aa118 100644
--- a/proto/prost/private/3rdparty/crates/BUILD.errno-dragonfly-0.1.2.bazel
+++ b/proto/prost/private/3rdparty/crates/BUILD.errno-dragonfly-0.1.2.bazel
@@ -13,9 +13,13 @@ package(default_visibility = ["//visibility:public"])
rust_library(
name = "errno_dragonfly",
- srcs = glob(["**/*.rs"]),
+ srcs = glob(
+ include = ["**/*.rs"],
+ allow_empty = False,
+ ),
compile_data = glob(
include = ["**"],
+ allow_empty = True,
exclude = [
"**/* *",
".tmp_git_root/**/*",
@@ -82,12 +86,16 @@ rust_library(
)
cargo_build_script(
- name = "errno-dragonfly_build_script",
- srcs = glob(["**/*.rs"]),
+ name = "errno-dragonfly_bs",
+ srcs = glob(
+ include = ["**/*.rs"],
+ allow_empty = False,
+ ),
crate_name = "build_script_build",
crate_root = "build.rs",
data = glob(
include = ["**"],
+ allow_empty = True,
exclude = [
"**/* *",
".tmp_git_root/**/*",
@@ -117,6 +125,6 @@ cargo_build_script(
alias(
name = "build_script_build",
- actual = ":errno-dragonfly_build_script",
+ actual = ":errno-dragonfly_bs",
tags = ["manual"],
)