aboutsummaryrefslogtreecommitdiff
path: root/python/python.go
diff options
context:
space:
mode:
Diffstat (limited to 'python/python.go')
-rw-r--r--python/python.go5
1 files changed, 2 insertions, 3 deletions
diff --git a/python/python.go b/python/python.go
index de21e39bd..7af8d9d18 100644
--- a/python/python.go
+++ b/python/python.go
@@ -108,7 +108,6 @@ type BaseProperties struct {
// list of the Python libraries compatible both with Python2 and Python3.
Libs []string `android:"arch_variant"`
- // TODO: b/403060602 - add unit tests for this property and related code
// list of shared libraries that should be packaged with the python code for this module.
Shared_libs []string `android:"arch_variant"`
@@ -681,7 +680,7 @@ func (p *PythonLibraryModule) collectPathsFromTransitiveDeps(ctx android.ModuleC
destToPyData[path.dest] = path.src.String()
}
- seen := make(map[android.Module]bool)
+ seen := make(map[android.ModuleProxy]bool)
var result android.Paths
@@ -727,7 +726,7 @@ func (p *PythonLibraryModule) collectPathsFromTransitiveDeps(ctx android.ModuleC
}
func (p *PythonLibraryModule) collectSharedLibDeps(ctx android.ModuleContext) android.Paths {
- seen := make(map[android.Module]bool)
+ seen := make(map[android.ModuleProxy]bool)
var result android.Paths