diff options
author | 2024-08-27 16:04:28 -0700 | |
---|---|---|
committer | 2024-08-27 16:04:28 -0700 | |
commit | b36d31d8705ab648bd84cd5ca0e2136c040a5b22 (patch) | |
tree | a10fd0bb0cac1b7a2207c56f7d7f31d5acee3e9d /java/systemserver_classpath_fragment.go | |
parent | 5b35cb9aef2ac85c87d5da7eeef8632844804379 (diff) |
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
Diffstat (limited to 'java/systemserver_classpath_fragment.go')
-rw-r--r-- | java/systemserver_classpath_fragment.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/java/systemserver_classpath_fragment.go b/java/systemserver_classpath_fragment.go index 3225a3a4d..924abd460 100644 --- a/java/systemserver_classpath_fragment.go +++ b/java/systemserver_classpath_fragment.go @@ -239,7 +239,7 @@ func (s *SystemServerClasspathModule) ComponentDepsMutator(ctx android.BottomUpM } // Collect information for opening IDE project files in java/jdeps.go. -func (s *SystemServerClasspathModule) IDEInfo(dpInfo *android.IdeInfo) { +func (s *SystemServerClasspathModule) IDEInfo(ctx android.BaseModuleContext, dpInfo *android.IdeInfo) { dpInfo.Deps = append(dpInfo.Deps, s.properties.Contents...) dpInfo.Deps = append(dpInfo.Deps, s.properties.Standalone_contents...) } |