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.go78 test.binaryDecorator.pythonInstaller.dir = "nativetest"
79 test.binaryDecorator.pythonInstaller.dir64 = "nativetest64"
81 test.binaryDecorator.pythonInstaller.relative = ctx.ModuleName()
83 test.binaryDecorator.pythonInstaller.install(ctx, file)
102 binary.pythonInstaller = NewPythonInstaller("nativetest", "nativetest64")
Dandroidmk.go55 base.subAndroidMk(entries, p.pythonInstaller)
74 base.subAndroidMk(entries, p.binaryDecorator.pythonInstaller)
77 func (installer *pythonInstaller) AndroidMk(base *Module, entries *android.AndroidMkEntries) {
Dbinary.go149 *pythonInstaller anonMember
162 decorator := &binaryDecorator{pythonInstaller: NewPythonInstaller("bin", "")}