summaryrefslogtreecommitdiff
path: root/rust/rust.go
diff options
context:
space:
mode:
author Colin Cross <ccross@android.com> 2020-12-22 18:55:34 +0000
committer Gerrit Code Review <noreply-gerritcodereview@google.com> 2020-12-22 18:55:34 +0000
commit1f8c2729846b83e24c09292ef5739b13375f7c0c (patch)
treee2ff82dd86e229cf58a518e6a3aec5dc9d810bdc /rust/rust.go
parent0a2afd183a9bfeb04a57ebb22abfe7a2a4596af8 (diff)
parent127bb8b9f6e0c224bb9240464b86f9db4e83ba83 (diff)
Merge changes from topic "llndk_cc_library"
* changes: Don't rewrite LLNDK dependencies with .llndk suffix Don't strip stub libraries
Diffstat (limited to 'rust/rust.go')
-rw-r--r--rust/rust.go10
1 files changed, 9 insertions, 1 deletions
diff --git a/rust/rust.go b/rust/rust.go
index 21da5ae6f..2e78a147a 100644
--- a/rust/rust.go
+++ b/rust/rust.go
@@ -189,7 +189,15 @@ func (mod *Module) IsVndkExt() bool {
return false
}
-func (c *Module) IsVndkPrivate(config android.Config) bool {
+func (c *Module) IsVndkPrivate() bool {
+ return false
+}
+
+func (c *Module) IsLlndk() bool {
+ return false
+}
+
+func (c *Module) IsLlndkPublic() bool {
return false
}