summaryrefslogtreecommitdiff
path: root/apex/builder.go
diff options
context:
space:
mode:
author Kiyoung Kim <kiyoungkim@google.com> 2024-04-04 17:33:42 +0900
committer Kiyoung Kim <kiyoungkim@google.com> 2024-04-05 01:57:32 +0000
commit4e765b1bfc82703d9febf30b44d3f6cbcaa29523 (patch)
tree9fba04f488d58004516e098fafa49286b57a6cd0 /apex/builder.go
parent37693d0a278f62f5a21aab1958440d86f3a78f0a (diff)
Remove Device VNDK version usage from Soong
As of VNDK deprecation, Device VNDK version should no longer be used from build. This change removes all references on Device VNDK version and related logic with it. Bug: 330100430 Test: AOSP CF build succeeded Change-Id: Ibc290f0b41e8321f80c75c69f810223989af68dc
Diffstat (limited to 'apex/builder.go')
-rw-r--r--apex/builder.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/apex/builder.go b/apex/builder.go
index 9bd4b61da..763ce4d20 100644
--- a/apex/builder.go
+++ b/apex/builder.go
@@ -293,7 +293,7 @@ func (a *apexBundle) buildManifest(ctx android.ModuleContext, provideNativeLibs,
}
if android.InList(":vndk", requireNativeLibs) {
- if _, vndkVersion := a.getImageVariationPair(ctx.DeviceConfig()); vndkVersion != "" {
+ if _, vndkVersion := a.getImageVariationPair(); vndkVersion != "" {
optCommands = append(optCommands, "-v vndkVersion "+vndkVersion)
}
}