diff options
Diffstat (limited to 'python/library.go')
-rw-r--r-- | python/library.go | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/python/library.go b/python/library.go index 0b7075667..2039e561b 100644 --- a/python/library.go +++ b/python/library.go @@ -17,8 +17,6 @@ package python // This file contains the module types for building Python library. import ( - "github.com/google/blueprint" - "android/soong/android" ) @@ -32,7 +30,7 @@ type PythonLibrary struct { var _ PythonSubModule = (*PythonLibrary)(nil) -func PythonLibraryHostFactory() (blueprint.Module, []interface{}) { +func PythonLibraryHostFactory() android.Module { module := &PythonLibrary{} return InitPythonBaseModule(&module.pythonBaseModule, module, android.HostSupportedNoCross) |