diff options
| author | Treehugger Robot <treehugger-gerrit@google.com> | 2020-01-09 00:44:13 +0000 |
|---|---|---|
| committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2020-01-09 00:44:13 +0000 |
| commit | 573326a8ce2f215539c37cdd7f96743cc37aa79f (patch) | |
| tree | 14a9af60a77c474540608cfba97754a6c9778a16 /rust | |
| parent | 62c085d7fefd0297d06c417992d48bc68da42645 (diff) | |
| parent | 114ff53f5e66f4493dcee443db677c09e0b9b32b (diff) | |
| download | build_soong-573326a8ce2f215539c37cdd7f96743cc37aa79f.tar.gz build_soong-573326a8ce2f215539c37cdd7f96743cc37aa79f.tar.bz2 build_soong-573326a8ce2f215539c37cdd7f96743cc37aa79f.zip | |
Merge "m <apex_name>-deps-info prints the internal/external deps of the APEX"
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 0eab8d22..14513fbf 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 } |
