vmbase: Set no_stdlibs for libvmbase

When building vmbase clients (e.g. `m pvmfw_bin`) with code changes in
vmbase, the build system masks (for some obscure reason) any vmbase
error with the following

  FAILED: [...]/libvmbase/android_arm64_armv8-2a_cortex-a55_rlib_rlib-std/libvmbase.rlib.clippy
  error[E0152]: found duplicate lang item `panic_impl`
    --> packages/modules/Virtualization/vmbase/src/lib.rs:43:1
     |
  43 | fn panic(info: &PanicInfo) -> ! {
     | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
     |
     = note: the lang item is first defined in crate `std`.
     = note: first definition in `std` loaded from [...]/libstd.rlib
     = note: second definition in the local crate (`vmbase`)

  error: aborting due to previous error

So make it clear to Soong that libvmbase does NOT link against libstd,
so that it reports the actual vmbase build errors instead.

Test: TH
Change-Id: I812e67ed2d300e39e12084306bbf1d7047ed3ae6
1 file changed
tree: 4e62c986613686f7281f0a1b8be7ec8a14479bfd
  1. apex/
  2. apkdmverity/
  3. authfs/
  4. compos/
  5. demo/
  6. demo_native/
  7. docs/
  8. encryptedstore/
  9. javalib/
  10. launcher/
  11. libs/
  12. microdroid/
  13. microdroid_manager/
  14. pvmfw/
  15. rialto/
  16. service_vm/
  17. tests/
  18. virtualizationmanager/
  19. virtualizationservice/
  20. vm/
  21. vm_payload/
  22. vmbase/
  23. vmclient/
  24. zipfuse/
  25. .clang-format
  26. .gitignore
  27. Android.bp
  28. OWNERS
  29. PREUPLOAD.cfg
  30. README.md
  31. TEST_MAPPING
README.md

Virtualization

This repository contains userspace services related to running virtual machines on Android, especially protected virtual machines. See the getting started documentation and Microdroid README for more information.