summaryrefslogtreecommitdiff
path: root/rust/rust.go
diff options
context:
space:
mode:
author Ivan Lozano <ivanlozano@google.com> 2021-03-30 12:19:36 -0400
committer Ivan Lozano <ivanlozano@google.com> 2021-04-13 11:04:44 -0400
commit3a7d000d129b9e14cd471f157bf2fcc23621b7ec (patch)
treefc29d17e4f8373ce4d7260ca6c0a5854227196b3 /rust/rust.go
parent8e1c08cda662b0848e8407eb9d260598b82067bc (diff)
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
Diffstat (limited to 'rust/rust.go')
-rw-r--r--rust/rust.go16
1 files changed, 16 insertions, 0 deletions
diff --git a/rust/rust.go b/rust/rust.go
index 34e197a07..f0da2ced0 100644
--- a/rust/rust.go
+++ b/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 ""
}