Merge "cc: Create a common image mutator interface"

This commit is contained in:
Ivan Lozano
2021-04-14 18:53:18 +00:00
committed by Gerrit Code Review
7 changed files with 252 additions and 72 deletions

View File

@@ -255,6 +255,22 @@ func (c *Module) IsLlndkPublic() bool {
return false
}
func (m *Module) IsLlndkHeaders() bool {
return false
}
func (m *Module) IsLlndkLibrary() bool {
return false
}
func (mod *Module) KernelHeadersDecorator() bool {
return false
}
func (m *Module) HasLlndkStubs() bool {
return false
}
func (mod *Module) SdkVersion() string {
return ""
}