summaryrefslogtreecommitdiff
path: root/python/library.go
diff options
context:
space:
mode:
author Colin Cross <ccross@android.com> 2017-06-23 15:06:31 -0700
committer Colin Cross <ccross@android.com> 2017-06-30 21:08:36 +0000
commit36242850fdad11b4e6fbe061ef30f62e7e8c08d8 (patch)
treea3ca380533afd39e733c658560f87effb1ee0a46 /python/library.go
parent48173891485a22c9cab0e48f90a3a23be212f44a (diff)
Refactor factories
Change module factories from returning a blueprint.Module and a list of property structs to returning an android.Module, which holds the list of property structs. Test: build.ninja identical except for Factory: comment lines Change-Id: Ica1d823f009db812c518f271a386fbff39c9766f
Diffstat (limited to 'python/library.go')
-rw-r--r--python/library.go4
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)