Don't use *.rs for srcs

Rust build rules only support a single source file (which can then
reference other modules).

So avoid wildcards, and instead name the top-level file.

The only case where we had multiple sources was pvmfw/avb, which
actually seemed to be working fine.

Test: atest liblibfdt.integration_test libpvmfw_avb.integration_test
  libdiced_open_dice.integration_test libdiced_open_dice_nostd.integration_test
  libdiced_sample_inputs.integration_test libdiced_sample_inputs_nostd.integration_test
  libservice_vm_comm.test libservice_vm_comm_nostd.test
Change-Id: I64ec1829a2128eeb629b37715ab78f1b694b25e2
diff --git a/service_vm/comm/Android.bp b/service_vm/comm/Android.bp
index bf923a4..15b4ef8 100644
--- a/service_vm/comm/Android.bp
+++ b/service_vm/comm/Android.bp
@@ -50,7 +50,7 @@
 rust_defaults {
     name: "libservice_vm_comm_test_defaults",
     crate_name: "diced_open_dice_test",
-    srcs: ["tests/*.rs"],
+    srcs: ["tests/api_test.rs"],
     test_suites: ["general-tests"],
     prefer_rlib: true,
     rustlibs: [