Searched refs:dexpreopter (Results 1 – 7 of 7) sorted by relevance
/build/soong/java/ |
D | app_import.go | 51 dexpreopter anonMember 209 return shouldUncompressDex(ctx, &a.dexpreopter) 280 a.dexpreopter.isApp = true 281 a.dexpreopter.installPath = installDir.Join(ctx, a.BaseModuleName()+".apk") 282 a.dexpreopter.isPresignedPrebuilt = Bool(a.properties.Presigned) 283 a.dexpreopter.uncompressedDex = a.shouldUncompressDex(ctx) 285 a.dexpreopter.enforceUsesLibs = a.usesLibrary.enforceUsesLibraries() 286 a.dexpreopter.classLoaderContexts = a.usesLibrary.classLoaderContextForUsesLibDeps(ctx) 292 a.dexpreopter.dexpreopt(ctx, jnisUncompressed) 293 if a.dexpreopter.uncompressedDex { [all …]
|
D | androidmk.go | 106 if len(library.dexpreopter.builtInstalled) > 0 { 107 entries.SetString("LOCAL_SOONG_BUILT_INSTALLED", library.dexpreopter.builtInstalled) 129 if library.dexpreopter.configPath != nil { 130 entries.SetPath("LOCAL_SOONG_DEXPREOPT_CONFIG", library.dexpreopter.configPath) 230 if len(prebuilt.dexpreopter.builtInstalled) > 0 { 231 entries.SetString("LOCAL_SOONG_BUILT_INSTALLED", prebuilt.dexpreopter.builtInstalled) 278 if len(binary.dexpreopter.builtInstalled) > 0 { 279 entries.SetString("LOCAL_SOONG_BUILT_INSTALLED", binary.dexpreopter.builtInstalled) 398 if len(app.dexpreopter.builtInstalled) > 0 { 399 entries.SetString("LOCAL_SOONG_BUILT_INSTALLED", app.dexpreopter.builtInstalled) [all …]
|
D | java.go | 464 func shouldUncompressDex(ctx android.ModuleContext, dexpreopter *dexpreopter) bool { argument 476 …if !dexpreopter.dexpreoptDisabled(ctx) && (ctx.Host() || !odexOnSystemOther(ctx, dexpreopter.insta… 497 j.dexpreopter.installPath = android.PathForModuleInstall(ctx, "framework", j.Stem()+".jar") 498 j.dexpreopter.isSDKLibrary = j.deviceProperties.IsSDKLibrary 501 j.dexProperties.Uncompress_dex = proptools.BoolPtr(shouldUncompressDex(ctx, &j.dexpreopter)) 503 j.dexpreopter.uncompressedDex = *j.dexProperties.Uncompress_dex 933 module.Module.dexpreopter.isTest = true 949 module.Module.dexpreopter.isTest = true 1178 dexpreopter anonMember 1358 j.dexpreopter.installPath = android.PathForModuleInstall(ctx, "framework", jarName) [all …]
|
D | dexpreopt.go | 27 type dexpreopter struct { struct 77 func (d *dexpreopter) dexpreoptDisabled(ctx android.BaseModuleContext) bool { argument 125 func (d *dexpreopter) dexpreopt(ctx android.ModuleContext, dexJarFile android.WritablePath) { argument
|
D | app.go | 356 return shouldUncompressDex(ctx, &a.dexpreopter) 461 a.dexpreopter.installPath = a.installPath(ctx) 462 a.dexpreopter.isApp = true 467 a.dexpreopter.uncompressedDex = *a.dexProperties.Uncompress_dex 468 a.dexpreopter.enforceUsesLibs = a.usesLibrary.enforceUsesLibraries() 469 a.dexpreopter.classLoaderContexts = a.classLoaderContexts 470 a.dexpreopter.manifestFile = a.mergedManifestFile 1040 module.Module.dexpreopter.isTest = true 1089 module.Module.dexpreopter.isTest = true
|
D | app_import_test.go | 462 …quals(t, "prebuilt framework-res install location", expectedInstallPath, a.dexpreopter.installPath)
|
D | robolectric.go | 336 module.Module.dexpreopter.isTest = true
|