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 UseArtImage bool // use the art image (use other boot class path dex files without image)
41 … bool // store odex files that match PatternsOnSystemOther on the system_other partition
42 …[]string // patterns (using '%' to denote a prefix match) to put odex on the system_other partition
44 DisableGenerateProfile bool // don't generate profiles
[all …]
Ddexpreopt.go55 global *GlobalConfig, module *ModuleConfig) (rule *android.RuleBuilder, err error) {
103 func dexpreoptDisabled(ctx android.PathContext, global *GlobalConfig, module *ModuleConfig) bool {
125 func profileCommand(ctx android.PathContext, globalSoong *GlobalSoongConfig, global *GlobalConfig,
166 …c bootProfileCommand(ctx android.PathContext, globalSoong *GlobalSoongConfig, global *GlobalConfig,
200 func GetSystemServerDexLocation(ctx android.PathContext, global *GlobalConfig, lib string) string {
218 func dexpreoptCommand(ctx android.PathContext, globalSoong *GlobalSoongConfig, global *GlobalConfig,
493 func shouldGenerateDM(module *ModuleConfig, global *GlobalConfig) bool {
500 func OdexOnSystemOtherByName(name string, dexLocation string, global *GlobalConfig) bool {
522 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.go502 func shouldBuildBootImages(config android.Config, global *dexpreopt.GlobalConfig) bool {