diff options
author | 2024-03-26 21:30:56 +0000 | |
---|---|---|
committer | 2024-03-26 22:46:11 +0000 | |
commit | 465549b5795866dd3927ee1a648f8ae749601379 (patch) | |
tree | 0aa38998aec55220c21b555e745ffa20fe46531c /android/sdk.go | |
parent | 5baf2cbcb63a799ea16d67525493b36fd028e1bc (diff) |
Revert "Migrate buildinfo.sh script into Soong"
Revert submission 3004875-buildinfo_prop_soong
Reason for revert: DroidMonitor-triggered revert due to breakage b/331462869
Reverted changes: /q/submissionid:3004875-buildinfo_prop_soong
Bug: 331462869
Change-Id: Ib8bbbad29a4ad7b800e6bd1a67a401c2225b78cb
Diffstat (limited to 'android/sdk.go')
-rw-r--r-- | android/sdk.go | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/android/sdk.go b/android/sdk.go index 121470d6e..6d5293e65 100644 --- a/android/sdk.go +++ b/android/sdk.go @@ -868,11 +868,3 @@ type AdditionalSdkInfo struct { } var AdditionalSdkInfoProvider = blueprint.NewProvider[AdditionalSdkInfo]() - -var apiFingerprintPathKey = NewOnceKey("apiFingerprintPathKey") - -func ApiFingerprintPath(ctx PathContext) OutputPath { - return ctx.Config().Once(apiFingerprintPathKey, func() interface{} { - return PathForOutput(ctx, "api_fingerprint.txt") - }).(OutputPath) -} |