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, 2 insertions, 2 deletions
diff --git a/cc/object.go b/cc/object.go
index 7c134ac3..25771951 100644
--- a/cc/object.go
+++ b/cc/object.go
@@ -25,7 +25,7 @@ import (
//
func init() {
- android.RegisterModuleType("cc_object", objectFactory)
+ android.RegisterModuleType("cc_object", ObjectFactory)
}
type objectLinker struct {
@@ -33,7 +33,7 @@ type objectLinker struct {
Properties ObjectLinkerProperties
}
-func objectFactory() android.Module {
+func ObjectFactory() android.Module {
module := newBaseModule(android.HostAndDeviceSupported, android.MultilibBoth)
module.linker = &objectLinker{
baseLinker: NewBaseLinker(nil),