Merge "fix some moved code from revert of aosp/2518976" into main
This commit is contained in:
commit
9301b11e06
1 changed files with 4 additions and 13 deletions
|
@ -238,6 +238,10 @@ func rustEnvVars(ctx ModuleContext, deps PathDeps) []string {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if ctx.Darwin() {
|
||||||
|
envVars = append(envVars, "ANDROID_RUST_DARWIN=true")
|
||||||
|
}
|
||||||
|
|
||||||
return envVars
|
return envVars
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -346,19 +350,6 @@ func transformSrctoCrate(ctx ModuleContext, main android.Path, deps PathDeps, fl
|
||||||
implicits = append(implicits, outputs.Paths()...)
|
implicits = append(implicits, outputs.Paths()...)
|
||||||
}
|
}
|
||||||
|
|
||||||
envVars = append(envVars, "ANDROID_RUST_VERSION="+config.GetRustVersion(ctx))
|
|
||||||
|
|
||||||
if ctx.RustModule().compiler.CargoEnvCompat() {
|
|
||||||
if _, ok := ctx.RustModule().compiler.(*binaryDecorator); ok {
|
|
||||||
envVars = append(envVars, "CARGO_BIN_NAME="+strings.TrimSuffix(outputFile.Base(), outputFile.Ext()))
|
|
||||||
}
|
|
||||||
envVars = append(envVars, "CARGO_CRATE_NAME="+ctx.RustModule().CrateName())
|
|
||||||
pkgVersion := ctx.RustModule().compiler.CargoPkgVersion()
|
|
||||||
if pkgVersion != "" {
|
|
||||||
envVars = append(envVars, "CARGO_PKG_VERSION="+pkgVersion)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if flags.Clippy {
|
if flags.Clippy {
|
||||||
clippyFile := android.PathForModuleOut(ctx, outputFile.Base()+".clippy")
|
clippyFile := android.PathForModuleOut(ctx, outputFile.Base()+".clippy")
|
||||||
ctx.Build(pctx, android.BuildParams{
|
ctx.Build(pctx, android.BuildParams{
|
||||||
|
|
Loading…
Reference in a new issue