Add ctx argument to IDEInfo()
The IDEInfo() methods read properties. To make those properties configurable, we need a context to evaluate them with. Bug: 362579941 Test: m nothing --no-skip-soong-tests Change-Id: I26d4b7084439b3006e50b02277298f74a929e1aa
This commit is contained in:
@@ -307,7 +307,7 @@ func (p *systemModulesInfoProperties) AddToPropertySet(ctx android.SdkMemberCont
|
||||
// implement the following interface for IDE completion.
|
||||
var _ android.IDEInfo = (*SystemModules)(nil)
|
||||
|
||||
func (s *SystemModules) IDEInfo(ideInfo *android.IdeInfo) {
|
||||
func (s *SystemModules) IDEInfo(ctx android.BaseModuleContext, ideInfo *android.IdeInfo) {
|
||||
ideInfo.Deps = append(ideInfo.Deps, s.properties.Libs...)
|
||||
ideInfo.Libs = append(ideInfo.Libs, s.properties.Libs...)
|
||||
}
|
||||
|
Reference in New Issue
Block a user