Add 'no_std' variant for 'lazy_static'. am: e72d1326c6 am: 9174a122cf

Original change: https://android-review.googlesource.com/c/platform/external/rust/crates/lazy_static/+/2842794

Change-Id: Ib06e3048f090e9de60d37b9bdcfec48934c8fd1d
Signed-off-by: Automerger Merge Worker <[email protected]>
diff --git a/Android.bp b/Android.bp
index 169df1c..f78d41a 100644
--- a/Android.bp
+++ b/Android.bp
@@ -69,3 +69,30 @@
     vendor_available: true,
     min_sdk_version: "29",
 }
+
+rust_library_rlib {
+    name: "liblazy_static_nostd",
+    crate_name: "lazy_static",
+    cargo_env_compat: true,
+    cargo_pkg_version: "1.4.0",
+    srcs: ["src/lib.rs"],
+    edition: "2015",
+    features: [
+        "spin",
+        "spin_no_std",
+    ],
+    rustlibs: ["libspin_nostd"],
+    apex_available: [
+        "//apex_available:platform",
+        "//apex_available:anyapex",
+    ],
+    prefer_rlib: true,
+    no_stdlibs: true,
+    stdlibs: [
+        "libcompiler_builtins.rust_sysroot",
+        "libcore.rust_sysroot",
+    ],
+    product_available: true,
+    vendor_available: true,
+    min_sdk_version: "29",
+}
diff --git a/cargo_embargo.json b/cargo_embargo.json
index 8902785..e32afad 100644
--- a/cargo_embargo.json
+++ b/cargo_embargo.json
@@ -10,5 +10,26 @@
       ]
     }
   },
-  "tests": true
+  "variants": [
+    {
+      "tests": true
+    },
+    {
+      "features": [
+        "spin",
+        "spin_no_std"
+      ],
+      "module_name_overrides": {
+        "liblazy_static": "liblazy_static_nostd",
+        "libspin": "libspin_nostd"
+      },
+      "package": {
+        "lazy_static": {
+          "force_rlib": true,
+          "host_supported": false,
+          "no_std": true
+        }
+      }
+    }
+  ]
 }