Home
last modified time | relevance | path

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

/build/soong/dexpreopt/
Dconfig.go26 type GlobalConfig struct { struct
27 DefaultNoStripping bool // don't strip dex files by default
29 DisablePreopt bool // disable preopt for all modules
30 DisablePreoptModules []string // modules with preopt disabled by product-specific config
32 OnlyPreoptBootImageAndSystemServer bool // only preopt jars in the boot image or system server
34 GenerateApexImage bool // generate an extra boot image only containing jars from the runtime apex
35 UseApexImage bool // use the apex image by default
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
[all …]
Ddexpreopt.go53 func GenerateStripRule(global GlobalConfig, module ModuleConfig) (rule *android.RuleBuilder, err er…
93 global GlobalConfig, module ModuleConfig) (rule *android.RuleBuilder, err error) {
136 func dexpreoptDisabled(global GlobalConfig, module ModuleConfig) bool {
153 func profileCommand(ctx android.PathContext, global GlobalConfig, module ModuleConfig,
192 func dexpreoptCommand(ctx android.PathContext, global GlobalConfig, module ModuleConfig, rule *andr…
480 func shouldStripDex(module ModuleConfig, global GlobalConfig) bool {
523 func shouldGenerateDM(module ModuleConfig, global GlobalConfig) bool {
530 func OdexOnSystemOtherByName(name string, dexLocation string, global GlobalConfig) bool {
552 func odexOnSystemOther(module ModuleConfig, global GlobalConfig) bool {
/build/soong/dexpreopt/dexpreopt_gen/
Ddexpreopt_gen.go116 func writeScripts(ctx android.PathContext, global dexpreopt.GlobalConfig, module dexpreopt.ModuleCo…
/build/soong/java/
Ddexpreopt_config.go50 func setDexpreoptTestGlobalConfig(config android.Config, globalConfig dexpreopt.GlobalConfig) {