Searched defs:GlobalConfig (Results 1 – 5 of 5) sorted by relevance
| /build/soong/dexpreopt/ |
| D | config.go | 30 type GlobalConfig struct { struct 31 DisablePreopt bool // disable preopt for all modules (excluding boot images) 32 DisablePreoptBootImages bool // disable prepot for boot images 33 DisablePreoptModules []string // modules with preopt disabled by product-specific config 35 OnlyPreoptBootImageAndSystemServer bool // only preopt jars in the boot image or system server 37 PreoptWithUpdatableBcp bool // If updatable boot jars are included in dexpreopt or not. 39 … bool // store odex files that match PatternsOnSystemOther on the system_other partition 40 …[]string // patterns (using '%' to denote a prefix match) to put odex on the system_other partition 42 DisableGenerateProfile bool // don't generate profiles 43 ProfileDir string // directory to find profiles in [all …]
|
| D | dexpreopt.go | 55 global *GlobalConfig, module *ModuleConfig) (rule *android.RuleBuilder, err error) { 107 func dexpreoptDisabled(ctx android.PathContext, global *GlobalConfig, module *ModuleConfig) bool { 137 func profileCommand(ctx android.PathContext, globalSoong *GlobalSoongConfig, global *GlobalConfig, 178 …c bootProfileCommand(ctx android.PathContext, globalSoong *GlobalSoongConfig, global *GlobalConfig, 212 func GetSystemServerDexLocation(ctx android.PathContext, global *GlobalConfig, lib string) string { 235 func dexpreoptCommand(ctx android.PathContext, globalSoong *GlobalSoongConfig, global *GlobalConfig, 518 func shouldGenerateDM(module *ModuleConfig, global *GlobalConfig) bool { 525 func OdexOnSystemOtherByName(name string, dexLocation string, global *GlobalConfig) bool { 547 func odexOnSystemOther(module *ModuleConfig, global *GlobalConfig) bool {
|
| D | testing.go | 93 …difyGlobalConfig(configModifier func(ctx android.PathContext, dexpreoptConfig *GlobalConfig)) andr…
|
| /build/soong/dexpreopt/dexpreopt_gen/ |
| D | dexpreopt_gen.go | 166 global *dexpreopt.GlobalConfig, module *dexpreopt.ModuleConfig, dexpreoptScriptPath string) {
|
| /build/soong/java/ |
| D | dexpreopt_bootjars.go | 529 func shouldBuildBootImages(config android.Config, global *dexpreopt.GlobalConfig) bool {
|