diff options
author | 2025-01-16 10:18:09 -0800 | |
---|---|---|
committer | 2025-01-16 10:18:09 -0800 | |
commit | bbb49cc0d8db02dbf476949127a7203f9d0d62dd (patch) | |
tree | 6bb4800606c630e300b86fa08d1026c07ecda755 | |
parent | feb2479506afeb4bf1e8b52a0f5edd21a420280b (diff) |
Remove android_info's timestamp file
The build rule was removed in aosp/3453258, but the usages weren't.
Bug: 376727180
Test: m --soong-only
Change-Id: I03330cdaaf4cbe78b159b5b6b480518b0ae4c7e1
-rw-r--r-- | android/android_info.go | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/android/android_info.go b/android/android_info.go index 561fa4c0c..9a68d1082 100644 --- a/android/android_info.go +++ b/android/android_info.go @@ -58,19 +58,17 @@ func (p *androidInfoModule) GenerateAndroidBuildActions(ctx ModuleContext) { androidInfoTxtName := proptools.StringDefault(p.properties.Stem, ctx.ModuleName()+".txt") androidInfoTxt := PathForModuleOut(ctx, androidInfoTxtName) androidInfoProp := androidInfoTxt.ReplaceExtension(ctx, "prop") - timestamp := PathForModuleOut(ctx, "timestamp") if boardInfoFiles := PathsForModuleSrc(ctx, p.properties.Board_info_files); len(boardInfoFiles) > 0 { ctx.Build(pctx, BuildParams{ - Rule: mergeAndRemoveComments, - Inputs: boardInfoFiles, - Output: androidInfoTxt, - Validation: timestamp, + Rule: mergeAndRemoveComments, + Inputs: boardInfoFiles, + Output: androidInfoTxt, }) } else if bootloaderBoardName := proptools.String(p.properties.Bootloader_board_name); bootloaderBoardName != "" { - WriteFileRule(ctx, androidInfoTxt, "board="+bootloaderBoardName, timestamp) + WriteFileRule(ctx, androidInfoTxt, "board="+bootloaderBoardName) } else { - WriteFileRule(ctx, androidInfoTxt, "", timestamp) + WriteFileRule(ctx, androidInfoTxt, "") } // Create android_info.prop |