summaryrefslogtreecommitdiff
path: root/soong/ca_certificates.go
diff options
context:
space:
mode:
Diffstat (limited to 'soong/ca_certificates.go')
-rw-r--r--soong/ca_certificates.go5
1 files changed, 3 insertions, 2 deletions
diff --git a/soong/ca_certificates.go b/soong/ca_certificates.go
index fa6f141..0cddd22 100644
--- a/soong/ca_certificates.go
+++ b/soong/ca_certificates.go
@@ -7,6 +7,7 @@ import (
"github.com/google/blueprint/proptools"
"android/soong/android"
+ "android/soong/etc"
"android/soong/phony"
)
@@ -62,7 +63,7 @@ func caCertificatesFactory() android.Module {
p := phony.PhonyFactory()
c := &caCertificatesProperties{}
android.AddLoadHook(p, func(ctx android.LoadHookContext) {
- caCertificatesLoadHook(ctx, android.PrebuiltEtcFactory, c)
+ caCertificatesLoadHook(ctx, etc.PrebuiltEtcFactory, c)
})
p.AddProperties(c)
@@ -73,7 +74,7 @@ func caCertificatesHostFactory() android.Module {
p := phony.PhonyFactory()
c := &caCertificatesProperties{}
android.AddLoadHook(p, func(ctx android.LoadHookContext) {
- caCertificatesLoadHook(ctx, android.PrebuiltEtcHostFactory, c)
+ caCertificatesLoadHook(ctx, etc.PrebuiltEtcHostFactory, c)
})
p.AddProperties(c)