Searched defs:GlobalConfig (Results 1 – 4 of 4) sorted by relevance
/build/soong/dexpreopt/ |
D | config.go | 29 type GlobalConfig struct { struct 30 DisablePreopt bool // disable preopt for all modules 31 DisablePreoptModules []string // modules with preopt disabled by product-specific config 33 OnlyPreoptBootImageAndSystemServer bool // only preopt jars in the boot image or system server 35 UseArtImage bool // use the art image (use other boot class path dex files without image) 37 … bool // store odex files that match PatternsOnSystemOther on the system_other partition 38 …[]string // patterns (using '%' to denote a prefix match) to put odex on the system_other partition 40 DisableGenerateProfile bool // don't generate profiles 41 ProfileDir string // directory to find profiles in 43 BootJars []string // modules for jars that form the boot class path [all …]
|
D | dexpreopt.go | 56 global *GlobalConfig, module *ModuleConfig) (rule *android.RuleBuilder, err error) { 101 func dexpreoptDisabled(ctx android.PathContext, global *GlobalConfig, module *ModuleConfig) bool { 125 func profileCommand(ctx android.PathContext, globalSoong *GlobalSoongConfig, global *GlobalConfig, 164 …c bootProfileCommand(ctx android.PathContext, globalSoong *GlobalSoongConfig, global *GlobalConfig, 246 func dexpreoptCommand(ctx android.PathContext, globalSoong *GlobalSoongConfig, global *GlobalConfig, 512 func shouldGenerateDM(module *ModuleConfig, global *GlobalConfig) bool { 519 func OdexOnSystemOtherByName(name string, dexLocation string, global *GlobalConfig) bool { 541 func odexOnSystemOther(module *ModuleConfig, global *GlobalConfig) bool { 584 func NonUpdatableSystemServerJars(ctx android.PathContext, global *GlobalConfig) []string {
|
/build/soong/dexpreopt/dexpreopt_gen/ |
D | dexpreopt_gen.go | 137 global *dexpreopt.GlobalConfig, module *dexpreopt.ModuleConfig, dexpreoptScriptPath string) {
|
/build/soong/apex/ |
D | apex_test.go | 5439 …tableJarsInBootImage(t *testing.T, errmsg string, transformDexpreoptConfig func(*dexpreopt.GlobalC…
|