Home
last modified time | relevance | path

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

/build/soong/cc/
Dndk_headers.go120 installDir := getCurrentIncludePath(ctx).Join(ctx, to, strippedHeaderDir)
123 return installDir
135 installDir := getHeaderInstallDir(ctx, header, String(m.properties.From),
137 installedPath := ctx.InstallFile(installDir, header.Base(), header)
138 installPath := installDir.Join(ctx, header.Base())
222 installDir := getHeaderInstallDir(ctx, header, String(m.properties.From), String(m.properties.To))
223 installPath := installDir.Join(ctx, header.Base())
339 installDir := getCurrentIncludePath(ctx).Join(ctx, String(m.properties.To))
341 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.go372 installDir := getNdkInstallBase(ctx).Join(ctx, fmt.Sprintf(
374 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.go1211 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
335 a.installDir = android.PathForModuleInstall(ctx, "apex")
337 ctx.InstallFile(a.installDir, a.installFilename, a.outputApex)
355 entries.SetString("LOCAL_MODULE_PATH", a.installDir.ToMakePath().String())
Dandroidmk.go72 linkPath := filepath.Join(a.installDir.ToMakePath().String(), apexBundleName, fi.Path())
112 pathWhenActivated := filepath.Join("$(PRODUCT_OUT)", "apex", apexName, fi.installDir)
116 modulePath = filepath.Join(a.installDir.ToMakePath().String(), apexBundleName, fi.installDir)
314 fmt.Fprintln(w, "LOCAL_MODULE_PATH :=", a.installDir.ToMakePath().String())
344 filepath.Join(a.installDir.ToMakePath().String(), a.prebuiltFileToDelete))
Dbuilder.go291 …return android.BuildNoticeOutput(ctx, a.installDir, apexFileName, android.SortedUniquePaths(notice…
473 if f.installDir == "bin" || strings.HasPrefix(f.installDir, "bin/") {
476 …readOnlyPaths = append(readOnlyPaths, filepath.Join(f.installDir, d.RelativeInstallPath, d.SrcPath…
479 executablePaths = append(executablePaths, filepath.Join(f.installDir, s))
483 extractedAppSetDirs = append(extractedAppSetDirs, f.installDir)
487 dir := f.installDir
667 ctx.InstallFile(a.installDir, a.Name()+suffix, a.outputFile)
726 dir := filepath.Join("apex", apexBundleName, fi.installDir)
Dapex.go1160 installDir string member
1181 …BaseModuleContext, builtFile android.Path, androidMkModuleName string, installDir string, class ap…
1185 installDir: installDir,
1203 return filepath.Join(af.installDir, path)
1252 installDir android.InstallPath member
2248 dest := filepath.Join(f.installDir, f.builtFile.Base())
2271 a.installDir = android.PathForModuleInstall(ctx, "apex")
Dapex_test.go3663 actual := apex.installDir.String()
3670 actual = flattened.installDir.String()
/build/soong/sh/
Dsh_binary.go110 installDir android.InstallPath member
169 installDir := android.PathForModuleInstall(ctx, "bin", proptools.String(s.properties.Sub_dir))
170 s.installedFile = ctx.InstallExecutable(installDir, s.outputFilePath.Base(), s.outputFilePath)
209 s.installDir = android.PathForModuleInstall(ctx, testDir, s.SubDir())
211 s.installDir = android.PathForModuleInstall(ctx, testDir, s.Name())
213 s.installedFile = ctx.InstallExecutable(s.installDir, s.outputFilePath.Base(), s.outputFilePath)
240 entries.SetPath("LOCAL_MODULE_PATH", s.installDir.ToMakePath())
/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.go305 installDir android.InstallPath member
576 var installDir string
579 installDir = "framework"
581 installDir = filepath.Join("priv-app", a.installApkName)
583 installDir = filepath.Join("app", a.installApkName)
586 return android.PathForModuleInstall(ctx, installDir, a.installApkName+".apk")
696 …a.noticeOutputs = android.BuildNoticeOutput(ctx, a.installDir, a.installApkName+".apk", noticePath…
751 a.installDir = android.PathForModuleInstall(ctx, "framework")
753 a.installDir = android.PathForModuleInstall(ctx, "priv-app", a.installApkName)
755 …a.installDir = android.PathForModuleInstall(ctx, a.installApkName, ctx.DeviceConfig().DeviceArch())
[all …]
Ddexpreopt_bootjars.go457 installDir := filepath.Join("/", image.installSubdir, arch.String())
469 rule.Install(artOrOat, filepath.Join(installDir, artOrOat.Base()))
479 android.RuleBuilderInstall{vdex, filepath.Join(installDir, vdex.Base())})
487 android.RuleBuilderInstall{unstrippedOat, filepath.Join(installDir, unstrippedOat.Base())})
Dandroidmk.go715 entries.SetPath("LOCAL_MODULE_PATH", r.installDir.ToMakePath())
/build/soong/rust/
Dcompiler.go218 func (compiler *baseCompiler) installDir(ctx ModuleContext) android.InstallPath { func
238 compiler.path = ctx.InstallFile(compiler.installDir(ctx), file.Base(), file)