aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames Farrell <jamesfarrell@google.com>2024-05-20 16:57:01 +0000
committerJames Farrell <jamesfarrell@google.com>2024-05-20 16:57:01 +0000
commitf085b80ad97bc8ca0a638a5804d4952992226cda (patch)
treee6765b82af20a7e6feca1f159bdf1598170f10f2
parent85fa24fcaa3ae8f80ea857a3c43594b06042e158 (diff)
downloadcrossbeam-queue-master.tar.gz
Update Android.bp by running cargo_embargoHEADmastermain
Test: ran cargo_embargo Change-Id: I95e536ebcd0d1147a2e821ea2b352ee555ca4a39
-rw-r--r--Android.bp6
1 files changed, 3 insertions, 3 deletions
diff --git a/Android.bp b/Android.bp
index b039cec..5aca54b 100644
--- a/Android.bp
+++ b/Android.bp
@@ -47,7 +47,7 @@ rust_test {
crate_name: "array_queue",
cargo_env_compat: true,
cargo_pkg_version: "0.3.11",
- srcs: ["tests/array_queue.rs"],
+ crate_root: "tests/array_queue.rs",
test_suites: ["general-tests"],
auto_gen_config: true,
test_options: {
@@ -72,7 +72,7 @@ rust_test {
crate_name: "seg_queue",
cargo_env_compat: true,
cargo_pkg_version: "0.3.11",
- srcs: ["tests/seg_queue.rs"],
+ crate_root: "tests/seg_queue.rs",
test_suites: ["general-tests"],
auto_gen_config: true,
test_options: {
@@ -97,7 +97,7 @@ rust_library {
crate_name: "crossbeam_queue",
cargo_env_compat: true,
cargo_pkg_version: "0.3.11",
- srcs: ["src/lib.rs"],
+ crate_root: "src/lib.rs",
edition: "2021",
features: [
"alloc",