summaryrefslogtreecommitdiff
path: root/filesystem/filesystem.go
diff options
context:
space:
mode:
authorJiyong Park <jiyong@google.com>2020-12-01 03:44:38 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2020-12-01 03:44:38 +0000
commit493e7ec3eee7e62035326eff5defbeb0cca6de82 (patch)
tree06485c9bbf8f8f2724b390d95303741a2cff877e /filesystem/filesystem.go
parent93bfe6bf76d86d8cc8c0ca4f51af38fc0f1b4666 (diff)
parent65b62244712802432940c74a6b43d0a509b94cb8 (diff)
Merge "Clients of PackagingBase can customize dependency tag to use"
Diffstat (limited to 'filesystem/filesystem.go')
-rw-r--r--filesystem/filesystem.go6
1 files changed, 5 insertions, 1 deletions
diff --git a/filesystem/filesystem.go b/filesystem/filesystem.go
index a1605b449..ecbfbab09 100644
--- a/filesystem/filesystem.go
+++ b/filesystem/filesystem.go
@@ -18,6 +18,8 @@ import (
"fmt"
"android/soong/android"
+
+ "github.com/google/blueprint"
)
func init() {
@@ -36,8 +38,10 @@ func filesystemFactory() android.Module {
return module
}
+var dependencyTag = struct{ blueprint.BaseDependencyTag }{}
+
func (f *filesystem) DepsMutator(ctx android.BottomUpMutatorContext) {
- f.AddDeps(ctx)
+ f.AddDeps(ctx, dependencyTag)
}
var pctx = android.NewPackageContext("android/soong/filesystem")