Loading apex/apex_test.go +1 −7 Original line number Diff line number Diff line Loading @@ -453,7 +453,6 @@ func TestBasicApex(t *testing.T) { srcs: ["foo/bar/MyClass.java"], sdk_version: "none", system_modules: "none", compile_dex: true, static_libs: ["myotherjar"], libs: ["mysharedjar"], // TODO: remove //apex_available:platform Loading @@ -468,7 +467,6 @@ func TestBasicApex(t *testing.T) { srcs: ["foo/bar/MyClass.java"], sdk_version: "none", system_modules: "none", compile_dex: true, // TODO: remove //apex_available:platform apex_available: [ "//apex_available:platform", Loading @@ -481,7 +479,6 @@ func TestBasicApex(t *testing.T) { srcs: ["foo/bar/MyClass.java"], sdk_version: "none", system_modules: "none", compile_dex: true, } `) Loading Loading @@ -595,7 +592,6 @@ func TestDefaults(t *testing.T) { srcs: ["foo/bar/MyClass.java"], sdk_version: "none", system_modules: "none", compile_dex: true, apex_available: [ "myapex" ], } Loading Loading @@ -2997,7 +2993,6 @@ func TestErrorsIfDepsAreNotEnabled(t *testing.T) { srcs: ["foo/bar/MyClass.java"], sdk_version: "none", system_modules: "none", compile_dex: true, enabled: false, } `) Loading Loading @@ -3528,7 +3523,6 @@ func TestCompatConfig(t *testing.T) { srcs: ["foo/bar/MyClass.java"], sdk_version: "none", system_modules: "none", compile_dex: true, apex_available: [ "myapex" ], } `) Loading Loading @@ -3557,6 +3551,7 @@ func TestRejectNonInstallableJavaLibrary(t *testing.T) { srcs: ["foo/bar/MyClass.java"], sdk_version: "none", system_modules: "none", compile_dex: false, } `) } Loading Loading @@ -3643,7 +3638,6 @@ func TestSymlinksFromApexToSystem(t *testing.T) { sdk_version: "none", system_modules: "none", libs: ["myotherjar"], compile_dex: true, apex_available: [ "myapex", "//apex_available:platform", Loading java/java.go +10 −0 Original line number Diff line number Diff line Loading @@ -1475,6 +1475,16 @@ func (j *Module) compile(ctx android.ModuleContext, aaptSrcJar android.Path) { j.implementationAndResourcesJar = implementationAndResourcesJar // Enable dex compilation for the APEX variants, unless it is disabled explicitly if android.DirectlyInAnyApex(ctx, ctx.ModuleName()) && !j.IsForPlatform() { if j.deviceProperties.Compile_dex == nil { j.deviceProperties.Compile_dex = proptools.BoolPtr(true) } if j.deviceProperties.Hostdex == nil { j.deviceProperties.Hostdex = proptools.BoolPtr(true) } } if ctx.Device() && j.hasCode(ctx) && (Bool(j.properties.Installable) || Bool(j.deviceProperties.Compile_dex)) { // Dex compilation Loading Loading
apex/apex_test.go +1 −7 Original line number Diff line number Diff line Loading @@ -453,7 +453,6 @@ func TestBasicApex(t *testing.T) { srcs: ["foo/bar/MyClass.java"], sdk_version: "none", system_modules: "none", compile_dex: true, static_libs: ["myotherjar"], libs: ["mysharedjar"], // TODO: remove //apex_available:platform Loading @@ -468,7 +467,6 @@ func TestBasicApex(t *testing.T) { srcs: ["foo/bar/MyClass.java"], sdk_version: "none", system_modules: "none", compile_dex: true, // TODO: remove //apex_available:platform apex_available: [ "//apex_available:platform", Loading @@ -481,7 +479,6 @@ func TestBasicApex(t *testing.T) { srcs: ["foo/bar/MyClass.java"], sdk_version: "none", system_modules: "none", compile_dex: true, } `) Loading Loading @@ -595,7 +592,6 @@ func TestDefaults(t *testing.T) { srcs: ["foo/bar/MyClass.java"], sdk_version: "none", system_modules: "none", compile_dex: true, apex_available: [ "myapex" ], } Loading Loading @@ -2997,7 +2993,6 @@ func TestErrorsIfDepsAreNotEnabled(t *testing.T) { srcs: ["foo/bar/MyClass.java"], sdk_version: "none", system_modules: "none", compile_dex: true, enabled: false, } `) Loading Loading @@ -3528,7 +3523,6 @@ func TestCompatConfig(t *testing.T) { srcs: ["foo/bar/MyClass.java"], sdk_version: "none", system_modules: "none", compile_dex: true, apex_available: [ "myapex" ], } `) Loading Loading @@ -3557,6 +3551,7 @@ func TestRejectNonInstallableJavaLibrary(t *testing.T) { srcs: ["foo/bar/MyClass.java"], sdk_version: "none", system_modules: "none", compile_dex: false, } `) } Loading Loading @@ -3643,7 +3638,6 @@ func TestSymlinksFromApexToSystem(t *testing.T) { sdk_version: "none", system_modules: "none", libs: ["myotherjar"], compile_dex: true, apex_available: [ "myapex", "//apex_available:platform", Loading
java/java.go +10 −0 Original line number Diff line number Diff line Loading @@ -1475,6 +1475,16 @@ func (j *Module) compile(ctx android.ModuleContext, aaptSrcJar android.Path) { j.implementationAndResourcesJar = implementationAndResourcesJar // Enable dex compilation for the APEX variants, unless it is disabled explicitly if android.DirectlyInAnyApex(ctx, ctx.ModuleName()) && !j.IsForPlatform() { if j.deviceProperties.Compile_dex == nil { j.deviceProperties.Compile_dex = proptools.BoolPtr(true) } if j.deviceProperties.Hostdex == nil { j.deviceProperties.Hostdex = proptools.BoolPtr(true) } } if ctx.Device() && j.hasCode(ctx) && (Bool(j.properties.Installable) || Bool(j.deviceProperties.Compile_dex)) { // Dex compilation Loading