Home
last modified time | relevance | path

Searched refs:PythonBinaryModule (Results 1 – 3 of 3) sorted by relevance

/aosp_15_r20/build/soong/python/
H A Dbinary.go63 type PythonBinaryModule struct { struct
76 var _ android.AndroidMkEntriesProvider = (*PythonBinaryModule)(nil)
77 var _ android.Module = (*PythonBinaryModule)(nil)
83 func NewBinary(hod android.HostOrDeviceSupported) *PythonBinaryModule {
84 return &PythonBinaryModule{
93 func (p *PythonBinaryModule) init() android.Module { argument
101 func (p *PythonBinaryModule) GenerateAndroidBuildActions(ctx android.ModuleContext) { argument
109 func (p *PythonBinaryModule) buildBinary(ctx android.ModuleContext) { argument
149 func (p *PythonBinaryModule) AndroidMkEntries() []android.AndroidMkEntries { argument
175 func (p *PythonBinaryModule) DepsMutator(ctx android.BottomUpMutatorContext) { argument
[all …]
H A Dtest.go38 p := &PythonTestModule{PythonBinaryModule: *NewBinary(hod)}
98 PythonBinaryModule anonMember
146 p.PythonBinaryModule.DepsMutator(ctx)
212 entriesList := p.PythonBinaryModule.AndroidMkEntries()
H A Dpython.go708 if _, ok := module.(*PythonBinaryModule); !ok {