Add SupportFilesInfo provider

This provider will be used to collect the
SOONG_INSTALLED_COMPATIBILITY_SUPPORT_FILES in device-tests mk code.

Test: CI
Bug: 388850000
Change-Id: I0e9d758eb83e289a806872f91515c5e5674cd4d0
diff --git a/android/test_suites.go b/android/test_suites.go
index 9eaf785..dbcd48c 100644
--- a/android/test_suites.go
+++ b/android/test_suites.go
@@ -42,6 +42,12 @@
 
 var TestSuiteInfoProvider = blueprint.NewProvider[TestSuiteInfo]()
 
+type SupportFilesInfo struct {
+	SupportFiles InstallPaths
+}
+
+var SupportFilesInfoProvider = blueprint.NewProvider[SupportFilesInfo]()
+
 func (t *testSuiteFiles) GenerateBuildActions(ctx SingletonContext) {
 	files := make(map[string]map[string]InstallPaths)