diff options
author | 2024-01-18 20:12:02 +0000 | |
---|---|---|
committer | 2024-01-18 12:43:24 -0800 | |
commit | 9a346f6da3d776d152a1dd39f0bbed8928c059f2 (patch) | |
tree | 538b602297e419c0667040e9d214bb7997574a7b /android/singleton.go | |
parent | f29b80c51fbbdf0ec590b284f658ad356a9e7230 (diff) |
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: Ic368c48dd01b68e51c471c3fe90d0c02c55956e9
Diffstat (limited to 'android/singleton.go')
-rw-r--r-- | android/singleton.go | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/android/singleton.go b/android/singleton.go index 47cfb2818..e0e552ebc 100644 --- a/android/singleton.go +++ b/android/singleton.go @@ -170,12 +170,7 @@ func (s *singletonContextAdaptor) Build(pctx PackageContext, params BuildParams) s.buildParams = append(s.buildParams, params) } bparams := convertBuildParams(params) - err := validateBuildParams(bparams) - if err != nil { - s.Errorf("%s: build parameter validation failed: %s", s.Name(), err.Error()) - } s.SingletonContext.Build(pctx.PackageContext, bparams) - } func (s *singletonContextAdaptor) Phony(name string, deps ...Path) { |