aboutsummaryrefslogtreecommitdiff
path: root/bazel
diff options
context:
space:
mode:
authorCole Faust <colefaust@google.com>2023-07-22 04:01:59 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2023-07-22 04:01:59 +0000
commit1c535124d5c7a04a7dc449db1686e4f9de5e30c2 (patch)
tree1051b89a81477e9bfc07972713367916d4b0c6c8 /bazel
parent460fb2d6d546b5ab493a7e5479998c4933a80f73 (diff)
parente3989a114d467790a5c7fe2ec6db12b2d7e253d5 (diff)
Merge "Revert "Add workaround for a file with an mtime in the future"" into main
Diffstat (limited to 'bazel')
-rw-r--r--bazel/aquery.go23
1 files changed, 1 insertions, 22 deletions
diff --git a/bazel/aquery.go b/bazel/aquery.go
index 186a4945b..3428328bd 100644
--- a/bazel/aquery.go
+++ b/bazel/aquery.go
@@ -115,7 +115,6 @@ type BuildStatement struct {
// input path string, but not both.
InputDepsetHashes []string
InputPaths []string
- OrderOnlyInputs []string
FileContents string
// If ShouldRunInSbox is true, Soong will use sbox to created an isolated environment
// and run the mixed build action there
@@ -138,8 +137,6 @@ type aqueryArtifactHandler struct {
depsetHashToArtifactPathsCache sync.Map
// Maps artifact ids to fully expanded paths.
artifactIdToPath map[artifactId]string
-
- extraBuildStatements []*BuildStatement
}
// The tokens should be substituted with the value specified here, instead of the
@@ -169,29 +166,13 @@ func newAqueryHandler(aqueryResult *analysis_v2_proto.ActionGraphContainer) (*aq
return pathFragmentId(pf.Id)
})
- var extraBuildStatements []*BuildStatement
artifactIdToPath := make(map[artifactId]string, len(aqueryResult.Artifacts))
for _, artifact := range aqueryResult.Artifacts {
artifactPath, err := expandPathFragment(pathFragmentId(artifact.PathFragmentId), pathFragments)
if err != nil {
return nil, err
}
- if strings.HasSuffix(artifactPath, "DumpPlatformClassPath.java") {
- // TODO(b/291828210): This is a workaround for the fact that DumpPlatformClassPath.java
- // has a timestamp in 2033. We'll copy it to a new file using a order-only dep, so that
- // the file is not recopied every build. Technically the order-only dep would produce
- // incremental build issues if this was a regular file produced as part of the build,
- // but this file is actually created by bazel during analysis, so it's not an issue.
- outputPath := "hack_for_b291828210/DumpPlatformClassPath.java"
- extraBuildStatements = append(extraBuildStatements, &BuildStatement{
- Command: fmt.Sprintf("cp %s %s", artifactPath, outputPath),
- OutputPaths: []string{outputPath},
- OrderOnlyInputs: []string{artifactPath},
- })
- artifactIdToPath[artifactId(artifact.Id)] = outputPath
- } else {
- artifactIdToPath[artifactId(artifact.Id)] = artifactPath
- }
+ artifactIdToPath[artifactId(artifact.Id)] = artifactPath
}
// Map middleman artifact ContentHash to input artifact depset ID.
@@ -218,7 +199,6 @@ func newAqueryHandler(aqueryResult *analysis_v2_proto.ActionGraphContainer) (*aq
depsetHashToArtifactPathsCache: sync.Map{},
emptyDepsetIds: make(map[depsetId]struct{}, 0),
artifactIdToPath: artifactIdToPath,
- extraBuildStatements: extraBuildStatements,
}
// Validate and adjust aqueryResult.DepSetOfFiles values.
@@ -392,7 +372,6 @@ func AqueryBuildStatements(aqueryJsonProto []byte, eventHandler *metrics.EventHa
if err != nil {
return nil, nil, err
}
- buildStatements = append(buildStatements, aqueryHandler.extraBuildStatements...)
depsetsByHash := map[string]AqueryDepset{}
depsets := make([]AqueryDepset, 0, len(aqueryHandler.depsetIdToAqueryDepset))