summaryrefslogtreecommitdiff
path: root/java
diff options
context:
space:
mode:
author Paul Duffin <paulduffin@google.com> 2019-06-17 06:39:10 -0700
committer android-build-merger <android-build-merger@google.com> 2019-06-17 06:39:10 -0700
commitf5675d6ac301c04b38c847d68f548e4cc3413c8b (patch)
tree52ab3f59b3be3cc942de1fa81c0193e081a0840a /java
parent653ac78cbcbc4a191f21849a947be6a921888285 (diff)
parent301ba52886bcfdc8d019ad1af2a391d895cd8f07 (diff)
Remove unused jars/sdk_version properties from java_system_modules
am: 301ba52886 Change-Id: Iff0eabd21a51391ed9e05dd130d410b2f689395f
Diffstat (limited to 'java')
-rw-r--r--java/system_modules.go8
1 files changed, 0 insertions, 8 deletions
diff --git a/java/system_modules.go b/java/system_modules.go
index 2ec3dfbd5..5a86f3c82 100644
--- a/java/system_modules.go
+++ b/java/system_modules.go
@@ -107,12 +107,6 @@ type SystemModules struct {
type SystemModulesProperties struct {
// List of java library modules that should be included in the system modules
Libs []string
-
- // List of prebuilt jars that should be included in the system modules
- Jars []string
-
- // Sdk version that should be included in the system modules
- Sdk_version *string
}
func (system *SystemModules) GenerateAndroidBuildActions(ctx android.ModuleContext) {
@@ -123,8 +117,6 @@ func (system *SystemModules) GenerateAndroidBuildActions(ctx android.ModuleConte
jars = append(jars, dep.HeaderJars()...)
})
- jars = append(jars, android.PathsForModuleSrc(ctx, system.properties.Jars)...)
-
system.outputFile = TransformJarsToSystemModules(ctx, "java.base", jars)
}