Home
last modified time | relevance | path

Searched refs:copiesForGoals (Results 1 – 1 of 1) sorted by relevance

/build/soong/android/
Dandroidmk.go283 copiesForGoals []*copiesForGoals member
288 func (d *distContributions) getCopiesForGoals(goals string) *copiesForGoals {
289 copiesForGoals := &copiesForGoals{goals: goals}
290 d.copiesForGoals = append(d.copiesForGoals, copiesForGoals)
291 return copiesForGoals
296 type copiesForGoals struct { struct
307 func (d *copiesForGoals) addCopyInstruction(from Path, dest string) { argument
387 copiesForGoals := distContributions.getCopiesForGoals(goals)
424 copiesForGoals.addCopyInstruction(path, dest)
435 for _, d := range distContributions.copiesForGoals {