diff options
author | 2025-03-18 23:23:44 +0000 | |
---|---|---|
committer | 2025-03-19 17:14:31 +0000 | |
commit | fb4b996aa0d358326a9c105cc55735e66b8aa5b2 (patch) | |
tree | 6ef28a871478b864c558fc5b220d2002e5471f87 /android | |
parent | be6f81d61e25753eeecdb65bdf7dd2bb6d4c1a5c (diff) |
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
Diffstat (limited to 'android')
-rw-r--r-- | android/test_suites.go | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/android/test_suites.go b/android/test_suites.go index 9eaf78549..dbcd48c79 100644 --- a/android/test_suites.go +++ b/android/test_suites.go @@ -42,6 +42,12 @@ type TestSuiteInfo struct { 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) |