aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthew Maurer <mmaurer@google.com>2023-03-07 17:23:18 -0800
committerMatthew Maurer <mmaurer@google.com>2023-03-07 17:23:18 -0800
commit1d10da36929d523ca63efa8a2ffa5b00f26a31be (patch)
tree583e7bccef8528455f42bd5fe8580b6d15ff2f77
parent7c724a76cfa1b4506068ec3a2d3d5fc46aa8b4ac (diff)
downloadandroid_log-sys-1d10da36929d523ca63efa8a2ffa5b00f26a31be.tar.gz
Make android_log-sys available to product and vendor
Bug: 270690570 Test: mma in external/rust/crates Change-Id: Ice438ab2818be31d9eead1a5f5236799b8d9b7a3
-rw-r--r--Android.bp6
1 files changed, 4 insertions, 2 deletions
diff --git a/Android.bp b/Android.bp
index 7ff380e..72b6b37 100644
--- a/Android.bp
+++ b/Android.bp
@@ -49,8 +49,9 @@ rust_library {
edition: "2015",
apex_available: [
"//apex_available:platform",
- "//apex_available:anyapex"
+ "//apex_available:anyapex",
],
+ product_available: true,
vendor_available: true,
min_sdk_version: "29",
target: {
@@ -62,5 +63,6 @@ rust_library {
// liblog is not added as a dependency for linux_musl target
enabled: false,
},
- },
+ }
+ ,
}