Searched refs:HostToolPath (Results 1 – 25 of 36) sorted by relevance
12
/build/soong/android/ |
D | licenses.go | 333 ctx.Config().HostToolPath(ctx, "build_license_metadata").String()) 335 ctx.Config().HostToolPath(ctx, "copy_license_metadata").String()) 336 ctx.Strict("HTMLNOTICE", ctx.Config().HostToolPath(ctx, "htmlnotice").String()) 337 ctx.Strict("XMLNOTICE", ctx.Config().HostToolPath(ctx, "xmlnotice").String()) 338 ctx.Strict("TEXTNOTICE", ctx.Config().HostToolPath(ctx, "textnotice").String()) 339 ctx.Strict("COMPLIANCENOTICE_BOM", ctx.Config().HostToolPath(ctx, "compliancenotice_bom").String()) 340 …ctx.Strict("COMPLIANCENOTICE_SHIPPEDLIBS", ctx.Config().HostToolPath(ctx, "compliancenotice_shippe… 341 ctx.Strict("COMPLIANCE_LISTSHARE", ctx.Config().HostToolPath(ctx, "compliance_listshare").String()) 342 …ctx.Strict("COMPLIANCE_CHECKSHARE", ctx.Config().HostToolPath(ctx, "compliance_checkshare").String… 343 ctx.Strict("COMPLIANCE_SBOM", ctx.Config().HostToolPath(ctx, "compliance_sbom").String())
|
D | proto.go | 78 if hostTool, ok := dep.(HostToolProvider); !ok || !hostTool.HostToolPath().Valid() { 83 deps = append(deps, hostTool.HostToolPath().Path()) 84 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 | 189 return proptools.NinjaAndShellEscape(ctx.Config().HostToolPath(ctx, path).String())
|
/build/soong/filesystem/ |
D | fsverity_metadata.go | 69 metadataGeneratorPath := ctx.Config().HostToolPath(ctx, "fsverity_metadata_generator") 70 fsverityPath := ctx.Config().HostToolPath(ctx, "fsverity") 96 manifestGeneratorPath := ctx.Config().HostToolPath(ctx, "fsverity_manifest_generator") 120 aapt2Path := ctx.Config().HostToolPath(ctx, "aapt2") 154 apksignerPath := ctx.Config().HostToolPath(ctx, "apksigner")
|
D | aconfig_files.go | 31 aconfigToolPath := ctx.Config().HostToolPath(ctx, "aconfig")
|
D | filesystem.go | 376 addPath("ext_mkuserimg", ctx.Config().HostToolPath(ctx, "mkuserimg_mke2fs")) 379 deps = append(deps, ctx.Config().HostToolPath(ctx, t)) 384 addPath("avb_avbtool", ctx.Config().HostToolPath(ctx, "avbtool"))
|
D | bootimg.go | 254 addPath("avb_avbtool", ctx.Config().HostToolPath(ctx, "avbtool"))
|
/build/soong/java/ |
D | boot_jars.go | 43 Input(ctx.Config().HostToolPath(ctx, "dexdump")).
|
D | gen.go | 65 Tool(ctx.Config().HostToolPath(ctx, "aidl")). 76 Tool(ctx.Config().HostToolPath(ctx, "soong_zip")).
|
D | proto.go | 131 hostTool := ctx.Config().HostToolPath(ctx, "protoc-gen-"+typeToPlugin)
|
/build/soong/cc/ |
D | proto_test.go | 64 foobarPath := foobar.Module().(android.HostToolProvider).HostToolPath().RelativeToTop().String()
|
D | rs.go | 32 return ctx.Config().HostToolPath(ctx, "llvm-rs-cc").String()
|
D | proto.go | 157 path := ctx.Config().HostToolPath(ctx, plugin)
|
/build/soong/dexpreopt/ |
D | config.go | 524 dex2oatPath := dex2oatModule.(android.HostToolProvider).HostToolPath() 536 Profman: ctx.Config().HostToolPath(ctx, "profman"), 538 Aapt: ctx.Config().HostToolPath(ctx, "aapt2"), 539 SoongZip: ctx.Config().HostToolPath(ctx, "soong_zip"), 540 Zip2zip: ctx.Config().HostToolPath(ctx, "zip2zip"), 541 ManifestCheck: ctx.Config().HostToolPath(ctx, "manifest_check"), 542 ConstructContext: ctx.Config().HostToolPath(ctx, "construct_context"), 714 Tool(ctx.Config().HostToolPath(ctx, "construct_uffd_gc_flag")).
|
D | testing.go | 29 func (m *fakeToolBinary) HostToolPath() android.OptionalPath { func
|
/build/soong/java/config/ |
D | config.go | 222 return ctx.Config().HostToolPath(ctx, tool).String() 256 return ctx.Config().HostToolPath(ctx, tool).String()
|
/build/soong/rust/ |
D | protobuf.go | 83 protoPluginPath := ctx.Config().HostToolPath(ctx, "protoc-gen-rust") 97 grpcPath := ctx.Config().HostToolPath(ctx, "grpc_rust_plugin")
|
D | binary_test.go | 122 path := ctx.ModuleForTests("fizz-buzz", "linux_glibc_x86_64").Module().(*Module).HostToolPath()
|
D | bindgen.go | 305 ….Properties.Custom_bindgen, customBindgenDepTag).(android.HostToolProvider).HostToolPath().String()
|
/build/soong/snapshot/ |
D | host_test.go | 37 func (c *hostTestModule) HostToolPath() android.OptionalPath { func
|
D | host_snapshot.go | 197 return provider.HostToolPath()
|
/build/soong/python/ |
D | binary.go | 184 func (p *PythonBinaryModule) HostToolPath() android.OptionalPath { func
|
/build/soong/apex/ |
D | builder.go | 55 return ctx.Config().HostToolPath(ctx, tool).String() 644 outHostBinDir := ctx.Config().HostToolPath(ctx, "").String() 1242 "tool_path": ctx.Config().HostToolPath(ctx, "").String() + ":${config.ClangBin}",
|
/build/soong/sh/ |
D | sh_binary.go | 185 func (s *ShBinary) HostToolPath() android.OptionalPath { func
|
12