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/libs/libfdt/Android.bp b/libs/libfdt/Android.bp
index 1bb5692..7a7d71f 100644
--- a/libs/libfdt/Android.bp
+++ b/libs/libfdt/Android.bp
@@ -53,7 +53,7 @@
     name: "liblibfdt.integration_test",
     crate_name: "libfdt_test",
     defaults: ["avf_build_flags_rust"],
-    srcs: ["tests/*.rs"],
+    srcs: ["tests/api_test.rs"],
     test_suites: ["general-tests"],
     data: [
         ":fdt_test_tree_one_memory_range_dtb",