Lines Matching refs:ModuleConfig
108 type ModuleConfig struct { struct
226 func LoadModuleConfig(ctx android.PathContext, path string) (ModuleConfig, error) {
228 ModuleConfig
246 return config.ModuleConfig, err
250 config.ModuleConfig.BuildPath = constructPath(ctx, config.BuildPath).(android.OutputPath)
251 config.ModuleConfig.DexPath = constructPath(ctx, config.DexPath)
252 …config.ModuleConfig.ProfileClassListing = android.OptionalPathForPath(constructPath(ctx, config.Pr…
253 config.ModuleConfig.LibraryPaths = constructPathMap(ctx, config.LibraryPaths)
254 config.ModuleConfig.DexPreoptImages = constructPaths(ctx, config.DexPreoptImages)
255 …config.ModuleConfig.PreoptBootClassPathDexFiles = constructPaths(ctx, config.PreoptBootClassPathDe…
256 config.ModuleConfig.StripInputPath = constructPath(ctx, config.StripInputPath)
257 config.ModuleConfig.StripOutputPath = constructWritablePath(ctx, config.StripOutputPath)
259 return config.ModuleConfig, nil