aboutsummaryrefslogtreecommitdiffstats
path: root/cc/object.go
diff options
context:
space:
mode:
Diffstat (limited to 'cc/object.go')
-rw-r--r--cc/object.go4
1 files changed, 1 insertions, 3 deletions
diff --git a/cc/object.go b/cc/object.go
index eaddd890..14789081 100644
--- a/cc/object.go
+++ b/cc/object.go
@@ -17,8 +17,6 @@ package cc
import (
"fmt"
- "github.com/google/blueprint"
-
"android/soong/android"
)
@@ -35,7 +33,7 @@ type objectLinker struct {
Properties ObjectLinkerProperties
}
-func objectFactory() (blueprint.Module, []interface{}) {
+func objectFactory() android.Module {
module := newBaseModule(android.HostAndDeviceSupported, android.MultilibBoth)
module.linker = &objectLinker{
baseLinker: NewBaseLinker(),