Searched refs:BuildPath (Results 1 – 8 of 8) sorted by relevance
/tools/treble/build/treble_build/local/ |
D | ninja_test.go | 73 res *app.BuildPath 77 res []*app.BuildPath 113 res: &app.BuildPath{Target: "test", Dependency: "dependency", 118 res: []*app.BuildPath{ 119 …&app.BuildPath{Target: "test", Dependency: "dependency", Paths: []string{"test", "mid1", "mid2", "… 120 …&app.BuildPath{Target: "test", Dependency: "dependency", Paths: []string{"test", "mid4", "dependen…
|
D | ninja.go | 111 func parsePath(target string, dependency string, data *bytes.Buffer) (*app.BuildPath, error) { 112 out := &app.BuildPath{Target: target, Dependency: dependency, Paths: []string{}} 119 func parsePaths(target string, dependency string, data *bytes.Buffer) ([]*app.BuildPath, error) { 120 out := []*app.BuildPath{} 124 out = append(out, &app.BuildPath{Target: target, Dependency: dependency, Paths: path}) 273 func (cli *ninjaCli) Path(ctx context.Context, target string, dependency string) (*app.BuildPath, e… 282 func (cli *ninjaCli) Paths(ctx context.Context, target string, dependency string) ([]*app.BuildPath…
|
/tools/treble/build/treble_build/report/ |
D | dependencies.go | 27 Path(ctx context.Context, target string, dependency string) (*app.BuildPath, error) 28 Paths(ctx context.Context, target string, dependency string) ([]*app.BuildPath, error)
|
D | report_test.go | 33 paths map[string]map[string]*app.BuildPath 34 multipaths map[string]map[string][]*app.BuildPath 77 func (r *reportTest) Path(ctx context.Context, target string, dependency string) (*app.BuildPath, e… 81 func (r *reportTest) Paths(ctx context.Context, target string, dependency string) ([]*app.BuildPath…
|
D | run.go | 173 …x context.Context, rtx *Context, target string, singlePath bool, files []string) []*app.BuildPath { 174 out := []*app.BuildPath{}
|
D | build.go | 38 path *app.BuildPath
|
/tools/treble/build/treble_build/app/ |
D | build.go | 36 type BuildPath struct { struct
|
/tools/treble/build/treble_build/cmd/ |
D | main.go | 111 Paths []*app.BuildPath `json:"build_paths,omitempty"`
|