diff options
author | 2024-06-18 12:43:41 -0700 | |
---|---|---|
committer | 2024-06-25 15:37:09 -0700 | |
commit | abdb293492018ba8fe29a94817e089fc8174fa56 (patch) | |
tree | 62ec584f5ccd780c406e84478a54463a5166fabc /cc/binary.go | |
parent | 94a6824c99dc001532fa55203462cf4fecb9f9b2 (diff) |
Update outputFilesForModuleFromProvider
This CL includes following changes:
1. Added the ability to differentiate the cases that module never
sets OutputFilesProvider and that module sets the provider with
a nil value.
2. Updated GenerateTaggedDistFiles to use outputFilesForModuleFromProvider.
3. Updated on cc module to use OutputFilesProvider.
Test: CI
Bug: 339477385
Change-Id: Ib5663a947315f6a90a81b7f073cf8dd22fbb1e05
Diffstat (limited to 'cc/binary.go')
-rw-r--r-- | cc/binary.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cc/binary.go b/cc/binary.go index 3ff35de56..2ac9a45bc 100644 --- a/cc/binary.go +++ b/cc/binary.go @@ -451,7 +451,7 @@ func (binary *binaryDecorator) unstrippedOutputFilePath() android.Path { } func (binary *binaryDecorator) strippedAllOutputFilePath() android.Path { - panic("Not implemented.") + return nil } func (binary *binaryDecorator) setSymlinkList(ctx ModuleContext) { |