diff options
Diffstat (limited to 'python/installer.go')
-rw-r--r-- | python/installer.go | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/python/installer.go b/python/installer.go index ab3d9b4af..62f36f4b5 100644 --- a/python/installer.go +++ b/python/installer.go @@ -34,6 +34,8 @@ type pythonInstaller struct { relative string path android.OutputPath + + androidMkSharedLibs []string } func NewPythonInstaller(dir, dir64 string) *pythonInstaller { @@ -59,3 +61,7 @@ func (installer *pythonInstaller) installDir(ctx android.ModuleContext) android. func (installer *pythonInstaller) install(ctx android.ModuleContext, file android.Path) { installer.path = ctx.InstallFile(installer.installDir(ctx), file.Base(), file) } + +func (installer *pythonInstaller) setAndroidMkSharedLibs(sharedLibs []string) { + installer.androidMkSharedLibs = sharedLibs +} |