diff options
| author | 2021-01-20 17:43:48 +0000 | |
|---|---|---|
| committer | 2021-01-20 17:43:48 +0000 | |
| commit | 1c8e5e817ef5aa852a88ea58c85f616eccee7d27 (patch) | |
| tree | 439f2a1d2480ba074699f2a90240cf013ead695d /java/java.go | |
| parent | 965561ce434817fa1c6f819919f6bae0eec18320 (diff) | |
| parent | fb04df4d57e52b38e6ebfec9cfcc2bb76968b2ce (diff) | |
Merge changes from topic "prebuilt-hiddenapi"
* changes:
Supply LOCAL_SOONG_DEX_JAR for java_import with compile_dex.
Enable an apex to include a java_import.
Enable prebuilt hiddenapi CSV files.
Diffstat (limited to 'java/java.go')
| -rw-r--r-- | java/java.go | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/java/java.go b/java/java.go index 3c6146b76..59ec94d5b 100644 --- a/java/java.go +++ b/java/java.go @@ -2831,6 +2831,10 @@ func (a *Import) JacocoReportClassesFile() android.Path { return nil } +func (j *Import) LintDepSets() LintDepSets { + return LintDepSets{} +} + func (j *Import) DepsMutator(ctx android.BottomUpMutatorContext) { ctx.AddVariationDependencies(nil, libTag, j.properties.Libs...) |