Home
last modified time | relevance | path

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

/build/soong/cc/
Dndk_headers.go121 installDir := getCurrentIncludePath(ctx).Join(ctx, to, strippedHeaderDir)
124 return installDir
144 installDir := getHeaderInstallDir(ctx, header, String(m.properties.From),
146 installedPath := ctx.InstallFile(installDir, header.Base(), header)
147 installPath := installDir.Join(ctx, header.Base())
231 installDir := getHeaderInstallDir(ctx, header, String(m.properties.From), String(m.properties.To))
232 installPath := installDir.Join(ctx, header.Base())
348 installDir := getCurrentIncludePath(ctx).Join(ctx, String(m.properties.To))
350 installPath := installDir.Join(ctx, src.Base())
Dinstaller.go64 func (installer *baseInstaller) installDir(ctx ModuleContext) android.InstallPath { func
86 installer.path = ctx.InstallFile(installer.installDir(ctx), file.Base(), file)
Dndk_library.go369 installDir := getNdkInstallBase(ctx).Join(ctx, fmt.Sprintf(
371 stub.installPath = ctx.InstallFile(installDir, path.Base(), path)
Dbinary.go452 dir := binary.baseInstaller.installDir(ctx)
478 ctx.InstallSymlink(binary.baseInstaller.installDir(ctx), symlink, binary.baseInstaller.path)
Dlibrary.go1200 dir := library.baseInstaller.installDir(ctx)
/build/soong/dexpreopt/dexpreopt_gen/
Ddexpreopt_gen.go143 installDir := module.BuildPath.InSameDir(ctx, "dexpreopt_install")
145 dexpreoptRule.Command().FlagWithArg("rm -rf ", installDir.String())
146 dexpreoptRule.Command().FlagWithArg("mkdir -p ", installDir.String())
149 installPath := installDir.Join(ctx, strings.TrimPrefix(install.To, "/"))
155 FlagWithArg("-C ", installDir.String()).
156 FlagWithArg("-D ", installDir.String())
/build/soong/apex/
Dprebuilt.go96 installDir android.InstallPath member
199 p.installDir = android.PathForModuleInstall(ctx, "apex")
217 ctx.InstallFile(p.installDir, p.installFilename, p.inputApex)
235 entries.SetString("LOCAL_MODULE_PATH", p.installDir.ToMakePath().String())
253 installDir android.InstallPath member
338 a.installDir = android.PathForModuleInstall(ctx, "apex")
340 ctx.InstallFile(a.installDir, a.installFilename, a.outputApex)
378 entries.SetString("LOCAL_MODULE_PATH", a.installDir.ToMakePath().String())
Dandroidmk.go74 linkPath := filepath.Join(a.installDir.ToMakePath().String(), apexBundleName, fi.Path())
115 pathWhenActivated := filepath.Join("$(PRODUCT_OUT)", "apex", apexName, fi.installDir)
119 modulePath = filepath.Join(a.installDir.ToMakePath().String(), apexBundleName, fi.installDir)
305 fmt.Fprintln(w, "LOCAL_MODULE_PATH :=", a.installDir.ToMakePath().String())
319 filepath.Join(a.installDir.ToMakePath().String(), a.prebuiltFileToDelete))
Dbuilder.go244 …return android.BuildNoticeOutput(ctx, a.installDir, apexFileName, android.SortedUniquePaths(notice…
413 if f.installDir == "bin" || strings.HasPrefix(f.installDir, "bin/") {
416 executablePaths = append(executablePaths, filepath.Join(f.installDir, s))
420 extractedAppSetDirs = append(extractedAppSetDirs, f.installDir)
424 dir := f.installDir
604 ctx.InstallFile(a.installDir, a.Name()+suffix, a.outputFile)
663 dir := filepath.Join("apex", apexBundleName, fi.installDir)
Dapex.go1255 installDir string member
1273 … android.BaseModuleContext, builtFile android.Path, moduleName string, installDir string, class ap…
1277 installDir: installDir,
1295 return filepath.Join(af.installDir, path)
1314 ret = append(ret, filepath.Join(af.installDir, symlink))
1344 installDir android.InstallPath member
2214 dest := filepath.Join(f.installDir, f.builtFile.Base())
2237 a.installDir = android.PathForModuleInstall(ctx, "apex")
Dapex_test.go3008 actual := apex.installDir.String()
3015 actual = flattened.installDir.String()
/build/soong/python/
Dinstaller.go50 func (installer *pythonInstaller) installDir(ctx android.ModuleContext) android.InstallPath { func
62 installer.path = ctx.InstallFile(installer.installDir(ctx), file.Base(), file)
/build/soong/java/
Dapp.go304 installDir android.InstallPath member
573 var installDir string
576 installDir = "framework"
578 installDir = filepath.Join("priv-app", a.installApkName)
580 installDir = filepath.Join("app", a.installApkName)
583 return android.PathForModuleInstall(ctx, installDir, a.installApkName+".apk")
689 …a.noticeOutputs = android.BuildNoticeOutput(ctx, a.installDir, a.installApkName+".apk", noticePath…
744 a.installDir = android.PathForModuleInstall(ctx, "framework")
746 a.installDir = android.PathForModuleInstall(ctx, "priv-app", a.installApkName)
748 …a.installDir = android.PathForModuleInstall(ctx, a.installApkName, ctx.DeviceConfig().DeviceArch())
[all …]
Ddexpreopt_bootjars.go453 installDir := filepath.Join("/", image.installSubdir, arch.String())
466 rule.Install(artOrOat, filepath.Join(installDir, artOrOat.Base()))
485 android.RuleBuilderInstall{unstrippedOat, filepath.Join(installDir, unstrippedOat.Base())})
Dandroidmk.go712 entries.SetPath("LOCAL_MODULE_PATH", r.installDir.ToMakePath())
/build/soong/sh/
Dsh_binary.go186 installDir := android.PathForModuleInstall(ctx, "bin", proptools.String(s.properties.Sub_dir))
187 s.installedFile = ctx.InstallExecutable(installDir, s.outputFilePath.Base(), s.outputFilePath)
267 installDir := android.PathForModuleInstall(ctx, testDir, proptools.String(s.properties.Sub_dir))
268 s.installedFile = ctx.InstallExecutable(installDir, s.outputFilePath.Base(), s.outputFilePath)
/build/soong/rust/
Dcompiler.go220 func (compiler *baseCompiler) installDir(ctx ModuleContext) android.InstallPath { func
233 compiler.path = ctx.InstallFile(compiler.installDir(ctx), file.Base(), file)