diff options
| author | 2019-04-25 00:06:00 +0000 | |
|---|---|---|
| committer | 2019-04-25 00:06:00 +0000 | |
| commit | 226586ca3c74e3d062844eb5366b4b933158a064 (patch) | |
| tree | 4e3bcb32190906ca797f821d41c2a86740c6e607 /java/java.go | |
| parent | 9a4abed70189ae321a59ec49e812e83ea938affc (diff) | |
| parent | 7f87f4fdeb30f612d74001acb26c466cbb452467 (diff) | |
Merge "Support target.hostdex.required"
Diffstat (limited to 'java/java.go')
| -rw-r--r-- | java/java.go | 7 |
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 |