Lines Matching +full:- +full:p
7 // http://www.apache.org/licenses/LICENSE-2.0
49 func (p *makefileGoal) inputPath() *string {
50 if p.properties.Product_out_path != nil {
51 …return proptools.StringPtr(filepath.Join("$(PRODUCT_OUT)", proptools.String(p.properties.Product_o…
57 func (p *makefileGoal) OutputFiles(tag string) (Paths, error) {
61 return Paths{p.outputFilePath}, nil
65 func (p *makefileGoal) DepsMutator(ctx BottomUpMutatorContext) {
66 if p.inputPath() == nil {
71 func (p *makefileGoal) GenerateAndroidBuildActions(ctx ModuleContext) {
72 filename := filepath.Base(proptools.String(p.inputPath()))
73 p.outputFilePath = PathForModuleOut(ctx, filename).OutputPath
75 ctx.InstallFile(PathForModuleInstall(ctx, "etc"), ctx.ModuleName(), p.outputFilePath)
78 func (p *makefileGoal) AndroidMkEntries() []AndroidMkEntries {
81 OutputFile: OptionalPathForPath(p.outputFilePath),
85 …fmt.Fprintf(w, "$(eval $(call copy-one-file,%s,%s))\n", proptools.String(p.inputPath()), p.outputF…