diff options
| author | 2023-12-18 19:15:39 +0000 | |
|---|---|---|
| committer | 2023-12-18 19:15:39 +0000 | |
| commit | b2c65a26d62ee4c38dd729b8e9f4b7e37c1708d6 (patch) | |
| tree | b4293c4767a519f52bdaa1c383e5d3c49f068248 /rust/rust.go | |
| parent | cd11c9535fe7e09fb0ca385cfeb39880e4906980 (diff) | |
| parent | bc7d76cca2a9eead34b45bcdf333eecdb4152879 (diff) | |
Merge changes from topic "provider_generics" into main
* changes:
Convert NewProvider/NewMutatorProvider to generic providers API
Use generics for providers API
Fix TestAarImportProducesJniPackages/aar-no-jni
Diffstat (limited to 'rust/rust.go')
| -rw-r--r-- | rust/rust.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rust/rust.go b/rust/rust.go index 02ec22d7e..c07966bdc 100644 --- a/rust/rust.go +++ b/rust/rust.go @@ -527,7 +527,7 @@ type FlagExporterInfo struct { LinkObjects []string // TODO: this should be android.Paths } -var FlagExporterInfoProvider = blueprint.NewProvider(FlagExporterInfo{}) +var FlagExporterInfoProvider = blueprint.NewProvider[FlagExporterInfo]() func (mod *Module) isCoverageVariant() bool { return mod.coverage.Properties.IsCoverageVariant |