Home
last modified time | relevance | path

Searched refs:pythonInstaller (Results 1 – 4 of 4) sorted by relevance

/build/soong/python/
Dinstaller.go31 type pythonInstaller struct { struct
41 func NewPythonInstaller(dir, dir64 string) *pythonInstaller {
42 return &pythonInstaller{
48 var _ installer = (*pythonInstaller)(nil)
50 func (installer *pythonInstaller) installDir(ctx android.ModuleContext) android.InstallPath { argument
61 func (installer *pythonInstaller) install(ctx android.ModuleContext, file android.Path) { argument
65 func (installer *pythonInstaller) setAndroidMkSharedLibs(sharedLibs []string) { argument
Dtest.go56 test.binaryDecorator.pythonInstaller.dir = "nativetest"
57 test.binaryDecorator.pythonInstaller.dir64 = "nativetest64"
59 test.binaryDecorator.pythonInstaller.relative = ctx.ModuleName()
61 test.binaryDecorator.pythonInstaller.install(ctx, file)
67 binary.pythonInstaller = NewPythonInstaller("nativetest", "nativetest64")
Dandroidmk.go58 base.subAndroidMk(ret, p.pythonInstaller)
78 base.subAndroidMk(ret, p.binaryDecorator.pythonInstaller)
81 func (installer *pythonInstaller) AndroidMk(base *Module, ret *android.AndroidMkData) {
Dbinary.go60 *pythonInstaller anonMember
73 decorator := &binaryDecorator{pythonInstaller: NewPythonInstaller("bin", "")}