cc: Create a common image mutator interface
As part of adding Vendor support to Rust, refactor the image mutator in CC to a new common image mutator interface so this logic can be reused across both CC and Rust. Bug: 184042776 Test: m nothing Change-Id: Ia55d5ad840db7cf1a64d6c65ed86487230cb8742
This commit is contained in:
16
rust/rust.go
16
rust/rust.go
@@ -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 ""
|
||||
}
|
||||
|
Reference in New Issue
Block a user