diff options
Diffstat (limited to 'rust')
| -rw-r--r-- | rust/rust.go | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/rust/rust.go b/rust/rust.go index 0eab8d222..14513fbf9 100644 --- a/rust/rust.go +++ b/rust/rust.go @@ -346,6 +346,11 @@ func (mod *Module) GetStaticVariant() cc.LinkableInterface { return nil } +func (mod *Module) AllStaticDeps() []string { + // TODO(jiyong): do this for rust? + return nil +} + func (mod *Module) Module() android.Module { return mod } |