Home
last modified time | relevance | path

Searched defs:GlobalConfig (Results 1 – 5 of 5) sorted by relevance

/build/soong/dexpreopt/
Dconfig.go30 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 …]
Ddexpreopt.go55 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 {
Dtesting.go93 …difyGlobalConfig(configModifier func(ctx android.PathContext, dexpreoptConfig *GlobalConfig)) andr…
/build/soong/dexpreopt/dexpreopt_gen/
Ddexpreopt_gen.go166 global *dexpreopt.GlobalConfig, module *dexpreopt.ModuleConfig, dexpreoptScriptPath string) {
/build/soong/java/
Ddexpreopt_bootjars.go529 func shouldBuildBootImages(config android.Config, global *dexpreopt.GlobalConfig) bool {