diff options
author | 2025-02-14 09:44:45 -0800 | |
---|---|---|
committer | 2025-02-14 09:44:45 -0800 | |
commit | 305316823e69953e6fccb46168b940cfc0a5dfb1 (patch) | |
tree | b4327b59056934b5da5c7ab45f979ae932f6879c /android/packaging.go | |
parent | 744dfb614fbd454121b9133273cc207a46d4d9e2 (diff) | |
parent | 4d60fdadd03d691c0b81ea2b8fb9af66af04a2fb (diff) |
Merge "Make fsverity files able to be built independently" into main
Diffstat (limited to 'android/packaging.go')
-rw-r--r-- | android/packaging.go | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/android/packaging.go b/android/packaging.go index 551fd4c3f..4e0c74a12 100644 --- a/android/packaging.go +++ b/android/packaging.go @@ -202,6 +202,11 @@ func (p *PackagingSpec) SrcPath() Path { return p.srcPath } +// The symlink target of the PackagingSpec. Do not use, for the soong-only migration. +func (p *PackagingSpec) SymlinkTarget() string { + return p.symlinkTarget +} + type PackageModule interface { Module packagingBase() *PackagingBase |