summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJosh Wu <joshwu@google.com>2022-07-28 16:47:07 +0800
committerJosh Wu <joshwu@google.com>2022-07-28 23:12:11 +0800
commit1eb4cb0956d8a5300a1a3f8c0e9615e23397edd0 (patch)
treea8bb5e19e3ff47200cd14ed90be3e4d692c838ee
parent13e068688da100b0f1d5ec08a375b2f062d92f39 (diff)
downloadppv-lite86-1eb4cb0956d8a5300a1a3f8c0e9615e23397edd0.tar.gz
Make crate vendor available
Test: m Bug: 235777894 Change-Id: Iafa3820ddba7b1dd5f5d7c473d35932f69ec9d84
-rw-r--r--Android.bp1
-rw-r--r--cargo2android.json5
2 files changed, 4 insertions, 2 deletions
diff --git a/Android.bp b/Android.bp
index 123567a..eb5d6df 100644
--- a/Android.bp
+++ b/Android.bp
@@ -53,6 +53,7 @@ rust_library {
"//apex_available:platform",
"com.android.virt",
],
+ vendor_available: true,
}
rust_test {
diff --git a/cargo2android.json b/cargo2android.json
index ac56e26..60b7aa4 100644
--- a/cargo2android.json
+++ b/cargo2android.json
@@ -6,5 +6,6 @@
"dependencies": true,
"device": true,
"run": true,
- "tests": true
-} \ No newline at end of file
+ "tests": true,
+ "vendor-available": true
+}