aboutsummaryrefslogtreecommitdiff
path: root/Android.bp
diff options
context:
space:
mode:
Diffstat (limited to 'Android.bp')
-rw-r--r--Android.bp23
1 files changed, 23 insertions, 0 deletions
diff --git a/Android.bp b/Android.bp
index 713459112..0d7e5720c 100644
--- a/Android.bp
+++ b/Android.bp
@@ -161,6 +161,22 @@ cc_defaults {
defaults_visibility: ["//visibility:public"],
}
+rust_defaults {
+ name: "rust_baremetal_defaults",
+ arch: {
+ arm64: {
+ flags: [
+ // There is no Rust flag that says "use baseline instruction set",
+ // so we disable SVE specifically. This can be extended with more
+ // problematic target features from rust/config/arm64_device.go
+ // as needed.
+ "-C target-feature=-sve2",
+ ],
+ },
+ },
+ defaults_visibility: ["//visibility:public"],
+}
+
product_config {
name: "product_config",
visibility: [
@@ -283,3 +299,10 @@ all_apex_certs {
"//cts/hostsidetests/appsecurity",
],
}
+
+system_dev_certificate {
+ name: "system_dev_certificate",
+ visibility: [
+ "//bootable/recovery:__subpackages__",
+ ],
+}