diff options
author | 2025-03-10 13:41:49 -0700 | |
---|---|---|
committer | 2025-03-10 13:41:49 -0700 | |
commit | a369dc00143821fa7784d1bfa9d2986186b23742 (patch) | |
tree | 39c1e14bbff8b6c1d28f7543880240809d61220c /rust/rust.go | |
parent | cfbdb0cec0d89feccb3cd8231a4095f673f74b29 (diff) | |
parent | ef9e63e775493bd73cb28917ad59e6b10e5506b5 (diff) |
Merge "Rename CommonModuleInfoKey to be consistent with others." into main
Diffstat (limited to 'rust/rust.go')
-rw-r--r-- | rust/rust.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rust/rust.go b/rust/rust.go index 2e3d846dd..5f3d7a922 100644 --- a/rust/rust.go +++ b/rust/rust.go @@ -1480,7 +1480,7 @@ func (mod *Module) depsToPaths(ctx android.ModuleContext) PathDeps { rustInfo, hasRustInfo := android.OtherModuleProvider(ctx, dep, RustInfoProvider) ccInfo, _ := android.OtherModuleProvider(ctx, dep, cc.CcInfoProvider) linkableInfo, hasLinkableInfo := android.OtherModuleProvider(ctx, dep, cc.LinkableInfoProvider) - commonInfo := android.OtherModuleProviderOrDefault(ctx, dep, android.CommonModuleInfoKey) + commonInfo := android.OtherModuleProviderOrDefault(ctx, dep, android.CommonModuleInfoProvider) if hasRustInfo && !linkableInfo.Static && !linkableInfo.Shared { //Handle Rust Modules makeLibName := rustMakeLibName(rustInfo, linkableInfo, &commonInfo, depName+rustInfo.RustSubName) |