aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCole Faust <colefaust@google.com>2024-01-18 12:42:29 -0800
committerCole Faust <colefaust@google.com>2024-01-18 12:42:29 -0800
commit45e9a24a53ce2cf8449d37e17364f7753de7492d (patch)
treeeb8f14390737962ccc2069d82118e2a4cef7c0f9
parent8763595026a6e7c90ec3d60bd3e6bc1bf63363c4 (diff)
downloadcsuite-45e9a24a53ce2cf8449d37e17364f7753de7492d.tar.gz
Remove SymlinkOutputs
symlink_outputs was added so bazel could run ninja files, but we abanoned that approach in roboleaf, and then roboleaf was cancelled entirely. Remove this feature so we're more compatible with upstream ninja / n2. Bug: 160568334 Test: Presubmits Change-Id: I9a0e231559f3850082be4e6307d5452275819205
-rw-r--r--tools/csuite_test/csuite_test_test.go4
1 files changed, 0 insertions, 4 deletions
diff --git a/tools/csuite_test/csuite_test_test.go b/tools/csuite_test/csuite_test_test.go
index 58423fc..91edaf9 100644
--- a/tools/csuite_test/csuite_test_test.go
+++ b/tools/csuite_test/csuite_test_test.go
@@ -289,12 +289,8 @@ func getAllOutputPaths(params android.TestingBuildParams) android.WritablePaths
if params.ImplicitOutput != nil {
paths = append(paths, params.ImplicitOutput)
}
- if params.SymlinkOutput != nil {
- paths = append(paths, params.SymlinkOutput)
- }
paths = append(paths, params.Outputs...)
paths = append(paths, params.ImplicitOutputs...)
- paths = append(paths, params.SymlinkOutputs...)
return paths
}