summaryrefslogtreecommitdiff
path: root/java/java.go
diff options
context:
space:
mode:
author Dan Willemsen <dwillemsen@google.com> 2018-07-22 21:18:45 -0700
committer Dan Willemsen <dwillemsen@google.com> 2018-07-22 21:18:45 -0700
commit59339a29e1e8ec90752f6b9a65deb45ea49f93ce (patch)
tree23053e7f36f9cb7eb9ba9917bb93bbbcf0f2382e /java/java.go
parentee74203bfbc0071a71ee783220cd563d20e961e7 (diff)
Fix `go vet` issues
Test: go vet ./... Change-Id: Ifb936ccc5e2b5a2c3fcbbbcb54f680e2973ea1b3
Diffstat (limited to 'java/java.go')
-rw-r--r--java/java.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/java/java.go b/java/java.go
index 99af2f5ab..53f851bda 100644
--- a/java/java.go
+++ b/java/java.go
@@ -574,7 +574,7 @@ func (j *Module) deps(ctx android.BottomUpMutatorContext) {
ctx.AddDependency(ctx.Module(), libTag, j.properties.Libs...)
ctx.AddDependency(ctx.Module(), staticLibTag, j.properties.Static_libs...)
ctx.AddFarVariationDependencies([]blueprint.Variation{
- {"arch", ctx.Config().BuildOsCommonVariant},
+ {Mutator: "arch", Variation: ctx.Config().BuildOsCommonVariant},
}, annoTag, j.properties.Annotation_processors...)
android.ExtractSourcesDeps(ctx, j.properties.Srcs)
android.ExtractSourcesDeps(ctx, j.properties.Exclude_srcs)