aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthew Maurer <mmaurer@google.com>2023-03-09 15:13:41 +0000
committerAutomerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>2023-03-09 15:13:41 +0000
commitbb64baccd7178191aec29df48f45956fed86f9e2 (patch)
treea753c264685c982711f8f4cd4f3ef60bdd8d60ce
parentf9d3bb30d05b46808f1e179b025e1b881a5ae06a (diff)
parente19774600c9de7b7885fa02bd70c9b86bf388c3f (diff)
downloadash-bb64baccd7178191aec29df48f45956fed86f9e2.tar.gz
Make ash available to product and vendor am: e19774600candroid-u-beta-1-gpl
Original change: https://android-review.googlesource.com/c/platform/external/rust/crates/ash/+/2476202 Change-Id: Ia2ff56da2b42638aad3a74dde6680dede0f22a6b Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
-rw-r--r--Android.bp6
1 files changed, 6 insertions, 0 deletions
diff --git a/Android.bp b/Android.bp
index 804cc57..2158d14 100644
--- a/Android.bp
+++ b/Android.bp
@@ -39,6 +39,7 @@ license {
rust_test {
name: "ash_test_src_lib",
+ // has rustc warnings
host_supported: true,
crate_name: "ash",
cargo_env_compat: true,
@@ -80,6 +81,7 @@ rust_defaults {
rust_test {
name: "ash_test_tests_constant_size_arrays",
defaults: ["ash_test_defaults"],
+ // has rustc warnings
host_supported: true,
srcs: ["tests/constant_size_arrays.rs"],
test_options: {
@@ -90,6 +92,7 @@ rust_test {
rust_test {
name: "ash_test_tests_display",
defaults: ["ash_test_defaults"],
+ // has rustc warnings
host_supported: true,
srcs: ["tests/display.rs"],
test_options: {
@@ -100,6 +103,7 @@ rust_test {
rust_library {
name: "libash_rust",
stem: "libash",
+ // has rustc warnings
host_supported: true,
crate_name: "ash",
cargo_env_compat: true,
@@ -117,4 +121,6 @@ rust_library {
"//apex_available:platform",
"com.android.virt",
],
+ product_available: true,
+ vendor_available: true,
}