diff options
| author | 2020-01-21 18:50:04 +0000 | |
|---|---|---|
| committer | 2020-01-21 18:50:04 +0000 | |
| commit | 5c417b30d0de63b9d43e0304e422d598095d9dfc (patch) | |
| tree | dd2a0521f5996b81ab04bff6b09a12576fab7c7d /python/python.go | |
| parent | a07b2f77668b908458ff266d2ad1de73164952e5 (diff) | |
| parent | d7a1dee1c1335700a4cdaa4e443cbe7160875130 (diff) | |
Merge "Python3 on device links against liblog"
Diffstat (limited to 'python/python.go')
| -rw-r--r-- | python/python.go | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/python/python.go b/python/python.go index c67c577dc..8b912be17 100644 --- a/python/python.go +++ b/python/python.go @@ -340,6 +340,11 @@ func (p *Module) DepsMutator(ctx android.BottomUpMutatorContext) { // dependencies later. ctx.AddFarVariationDependencies(ctx.Target().Variations(), launcherSharedLibTag, "libsqlite") + if ctx.Device() { + ctx.AddFarVariationDependencies(ctx.Target().Variations(), launcherSharedLibTag, + "liblog") + } + if ctx.Target().Os.Bionic() { ctx.AddFarVariationDependencies(ctx.Target().Variations(), launcherSharedLibTag, "libc", "libdl", "libm") |