Searched refs:HostToolPath (Results 1 – 25 of 31) sorted by relevance
12
/build/soong/android/ |
D | proto.go | 74 if hostTool, ok := dep.(HostToolProvider); !ok || !hostTool.HostToolPath().Valid() { 79 deps = append(deps, hostTool.HostToolPath().Path()) 80 flags = append(flags, "--plugin=protoc-gen-"+plugin+"="+hostTool.HostToolPath().String())
|
D | prebuilt_build_tool.go | 96 func (t *prebuiltBuildTool) HostToolPath() OptionalPath { func
|
D | package_ctx.go | 176 return ctx.Config().HostToolPath(ctx, path).String()
|
D | rule_builder.go | 1024 return c.Tool(c.rule.ctx.Config().HostToolPath(c.rule.ctx, tool))
|
/build/soong/dexpreopt/ |
D | config.go | 438 dex2oatPath := dex2oatModule.(android.HostToolProvider).HostToolPath() 450 Profman: ctx.Config().HostToolPath(ctx, "profman"), 452 Aapt: ctx.Config().HostToolPath(ctx, "aapt"), 453 SoongZip: ctx.Config().HostToolPath(ctx, "soong_zip"), 454 Zip2zip: ctx.Config().HostToolPath(ctx, "zip2zip"), 455 ManifestCheck: ctx.Config().HostToolPath(ctx, "manifest_check"), 456 ConstructContext: ctx.Config().HostToolPath(ctx, "construct_context"),
|
D | testing.go | 29 func (m *fakeToolBinary) HostToolPath() android.OptionalPath { func
|
/build/soong/cc/ |
D | rs.go | 32 return ctx.Config().HostToolPath(ctx, "llvm-rs-cc").String()
|
D | proto_test.go | 64 foobarPath := foobar.Module().(android.HostToolProvider).HostToolPath().RelativeToTop().String()
|
D | proto.go | 152 path := ctx.Config().HostToolPath(ctx, plugin)
|
/build/soong/java/ |
D | boot_jars.go | 38 Input(ctx.Config().HostToolPath(ctx, "dexdump")).
|
D | gen.go | 70 Tool(ctx.Config().HostToolPath(ctx, "aidl")). 80 Tool(ctx.Config().HostToolPath(ctx, "soong_zip")).
|
D | proto.go | 122 hostTool := ctx.Config().HostToolPath(ctx, "protoc-gen-"+typeToPlugin)
|
D | hiddenapi_modular.go | 313 Tool(ctx.Config().HostToolPath(ctx, "hiddenapi")).
|
/build/soong/java/config/ |
D | config.go | 188 return ctx.Config().HostToolPath(ctx, tool).String() 222 return ctx.Config().HostToolPath(ctx, tool).String()
|
/build/soong/rust/ |
D | protobuf.go | 76 protoPluginPath := ctx.Config().HostToolPath(ctx, "protoc-gen-rust") 90 grpcPath := ctx.Config().HostToolPath(ctx, "grpc_rust_plugin")
|
D | binary_test.go | 95 path := ctx.ModuleForTests("fizz-buzz", "linux_glibc_x86_64").Module().(*Module).HostToolPath()
|
D | bindgen.go | 205 …irectDepWithTag(b.Properties.Custom_bindgen, customBindgenDepTag).(*Module).HostToolPath().String()
|
/build/soong/filesystem/ |
D | filesystem.go | 302 addPath("ext_mkuserimg", ctx.Config().HostToolPath(ctx, "mkuserimg_mke2fs")) 305 deps = append(deps, ctx.Config().HostToolPath(ctx, t)) 310 addPath("avb_avbtool", ctx.Config().HostToolPath(ctx, "avbtool"))
|
D | bootimg.go | 247 addPath("avb_avbtool", ctx.Config().HostToolPath(ctx, "avbtool"))
|
/build/soong/genrule/ |
D | genrule.go | 298 path := t.HostToolPath() 724 depFixerTool := ctx.Config().HostToolPath(ctx, "dep_fixer")
|
D | genrule_test.go | 727 func (t *testTool) HostToolPath() android.OptionalPath { func
|
/build/soong/sh/ |
D | sh_binary.go | 174 func (s *ShBinary) HostToolPath() android.OptionalPath { func
|
/build/soong/python/ |
D | python.go | 312 func (p *Module) HostToolPath() android.OptionalPath { func
|
/build/soong/apex/ |
D | apex.go | 1445 fileToCopy := py.HostToolPath().Path() 1692 } else if py, ok := child.(*python.Module); ok && py.HostToolPath().Valid() {
|
D | builder.go | 50 return ctx.Config().HostToolPath(ctx, tool).String()
|
12