change vsdk_v$(ver) to system_sdk_v$(ver)
The vsdk name is change to system sdk, so vsdk_v$(ver) need to change to system_sdk_v$(ver) Bug: 67724799 Test: build & boot on taimen Change-Id: I9ac508f5ed2602fbf827e0b0e4c205ab01915525
This commit is contained in:
parent
2e020842dc
commit
b5b5b2667d
1 changed files with 1 additions and 1 deletions
|
@ -347,7 +347,7 @@ func decodeSdkDep(ctx android.BaseContext, v string) sdkDep {
|
|||
if strings.Contains(v, "system_") {
|
||||
return sdkDep{
|
||||
invalidVersion: true,
|
||||
module: "vsdk_v" + strings.Replace(v, "system_", "", 1),
|
||||
module: "system_sdk_v" + strings.Replace(v, "system_", "", 1),
|
||||
}
|
||||
}
|
||||
return sdkDep{
|
||||
|
|
Loading…
Reference in a new issue