Support rust in aconfig mode validation.

Bug: 323071835
Test: Unit tests
Change-Id: I6de2a6fe1618e21c9aab728e6d77c6b0c6ce33df
This commit is contained in:
Yu Liu
2024-03-15 18:48:38 +00:00
parent b9ae285b55
commit c888460e5d
2 changed files with 157 additions and 0 deletions

View File

@@ -1063,6 +1063,12 @@ func (d dependencyTag) LicenseAnnotations() []android.LicenseAnnotation {
return nil
}
func (d dependencyTag) PropagateAconfigValidation() bool {
return d == rlibDepTag || d == sourceDepTag
}
var _ android.PropagateAconfigValidationDependencyTag = dependencyTag{}
var _ android.LicenseAnnotationsDependencyTag = dependencyTag{}
var (