diff options
author | 2025-02-24 20:37:31 -0800 | |
---|---|---|
committer | 2025-02-24 20:37:31 -0800 | |
commit | 08d40a1b365ca91981ce72ed44b33297c94d0e4a (patch) | |
tree | 4ce531efc845deb18b68de95b113e6672789959d /android/module.go | |
parent | 465415a9397ddcd2842ed14711234197bb1cd2a9 (diff) | |
parent | d143f3e35485b8ad9f5be0bede0f030874025240 (diff) |
Merge "Remove DistFiles from AndroidMk datastructures" into main
Diffstat (limited to 'android/module.go')
-rw-r--r-- | android/module.go | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/android/module.go b/android/module.go index 996c64e52..d387c2cf3 100644 --- a/android/module.go +++ b/android/module.go @@ -613,17 +613,6 @@ func (t TaggedDistFiles) merge(other TaggedDistFiles) TaggedDistFiles { return t } -func MakeDefaultDistFiles(paths ...Path) TaggedDistFiles { - for _, p := range paths { - if p == nil { - panic("The path to a dist file cannot be nil.") - } - } - - // The default OutputFile tag is the empty "" string. - return TaggedDistFiles{DefaultDistTag: paths} -} - type hostAndDeviceProperties struct { // If set to true, build a variant of the module for the host. Defaults to false. Host_supported *bool |