Merge "Add java sdk library enforcement flag"

This commit is contained in:
JaeMan Park
2020-12-02 04:39:10 +00:00
committed by Gerrit Code Review
6 changed files with 311 additions and 0 deletions

View File

@@ -1321,6 +1321,14 @@ func (c *config) EnforceProductPartitionInterface() bool {
return Bool(c.productVariables.EnforceProductPartitionInterface)
}
func (c *config) EnforceInterPartitionJavaSdkLibrary() bool {
return Bool(c.productVariables.EnforceInterPartitionJavaSdkLibrary)
}
func (c *config) InterPartitionJavaLibraryAllowList() []string {
return c.productVariables.InterPartitionJavaLibraryAllowList
}
func (c *config) InstallExtraFlattenedApexes() bool {
return Bool(c.productVariables.InstallExtraFlattenedApexes)
}