summaryrefslogtreecommitdiff
path: root/java/java.go
diff options
context:
space:
mode:
author Colin Cross <ccross@android.com> 2019-04-25 00:06:00 +0000
committer Gerrit Code Review <noreply-gerritcodereview@google.com> 2019-04-25 00:06:00 +0000
commit226586ca3c74e3d062844eb5366b4b933158a064 (patch)
tree4e3bcb32190906ca797f821d41c2a86740c6e607 /java/java.go
parent9a4abed70189ae321a59ec49e812e83ea938affc (diff)
parent7f87f4fdeb30f612d74001acb26c466cbb452467 (diff)
Merge "Support target.hostdex.required"
Diffstat (limited to 'java/java.go')
-rw-r--r--java/java.go7
1 files changed, 7 insertions, 0 deletions
diff --git a/java/java.go b/java/java.go
index fac28ed0d..6168b38d4 100644
--- a/java/java.go
+++ b/java/java.go
@@ -221,6 +221,13 @@ type CompilerDeviceProperties struct {
// If true, export a copy of the module as a -hostdex module for host testing.
Hostdex *bool
+ Target struct {
+ Hostdex struct {
+ // Additional required dependencies to add to -hostdex modules.
+ Required []string
+ }
+ }
+
// If set to true, compile dex regardless of installable. Defaults to false.
Compile_dex *bool