aboutsummaryrefslogtreecommitdiff
path: root/wasm_bindgen/3rdparty/crates/BUILD.ring-0.17.5.bazel
diff options
context:
space:
mode:
Diffstat (limited to 'wasm_bindgen/3rdparty/crates/BUILD.ring-0.17.5.bazel')
-rw-r--r--wasm_bindgen/3rdparty/crates/BUILD.ring-0.17.5.bazel16
1 files changed, 12 insertions, 4 deletions
diff --git a/wasm_bindgen/3rdparty/crates/BUILD.ring-0.17.5.bazel b/wasm_bindgen/3rdparty/crates/BUILD.ring-0.17.5.bazel
index c190f115..3cacf73d 100644
--- a/wasm_bindgen/3rdparty/crates/BUILD.ring-0.17.5.bazel
+++ b/wasm_bindgen/3rdparty/crates/BUILD.ring-0.17.5.bazel
@@ -13,9 +13,13 @@ package(default_visibility = ["//visibility:public"])
rust_library(
name = "ring",
- srcs = glob(["**/*.rs"]),
+ srcs = glob(
+ include = ["**/*.rs"],
+ allow_empty = False,
+ ),
compile_data = glob(
include = ["**"],
+ allow_empty = True,
exclude = [
"**/* *",
".tmp_git_root/**/*",
@@ -174,8 +178,11 @@ rust_library(
)
cargo_build_script(
- name = "ring_build_script",
- srcs = glob(["**/*.rs"]),
+ name = "ring_bs",
+ srcs = glob(
+ include = ["**/*.rs"],
+ allow_empty = False,
+ ),
crate_features = [
"alloc",
"default",
@@ -185,6 +192,7 @@ cargo_build_script(
crate_root = "build.rs",
data = glob(
include = ["**"],
+ allow_empty = True,
exclude = [
"**/* *",
".tmp_git_root/**/*",
@@ -215,6 +223,6 @@ cargo_build_script(
alias(
name = "build_script_build",
- actual = ":ring_build_script",
+ actual = ":ring_bs",
tags = ["manual"],
)