diff options
author | 2024-08-19 20:00:32 +0000 | |
---|---|---|
committer | 2024-08-19 21:45:07 +0000 | |
commit | 54513622f7d754c1cee7f06a9cb7050a42c172b8 (patch) | |
tree | f6444cb74aa328321fba6694baf5e76cc5dc159b /android/singleton.go | |
parent | 67478b347e4b5815654048cf9a3f3b33fc7e047a (diff) |
Add phonies as provider instead of updaing a global map.
Bug: 358425833
Test: Manually compare the generated mk and ninja files.
Change-Id: Ie74b620fc680ca2fc0d7836e88361ab3bdb87c49
Diffstat (limited to 'android/singleton.go')
-rw-r--r-- | android/singleton.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/android/singleton.go b/android/singleton.go index 92264d2e3..8542bd9e6 100644 --- a/android/singleton.go +++ b/android/singleton.go @@ -177,7 +177,7 @@ func (s *singletonContextAdaptor) Build(pctx PackageContext, params BuildParams) } func (s *singletonContextAdaptor) Phony(name string, deps ...Path) { - addPhony(s.Config(), name, deps...) + addSingletonPhony(s.Config(), name, deps...) } func (s *singletonContextAdaptor) SetOutDir(pctx PackageContext, value string) { |