summaryrefslogtreecommitdiff
path: root/android/packaging.go
diff options
context:
space:
mode:
author Cole Faust <colefaust@google.com> 2025-02-14 09:44:45 -0800
committer Gerrit Code Review <noreply-gerritcodereview@google.com> 2025-02-14 09:44:45 -0800
commit305316823e69953e6fccb46168b940cfc0a5dfb1 (patch)
treeb4327b59056934b5da5c7ab45f979ae932f6879c /android/packaging.go
parent744dfb614fbd454121b9133273cc207a46d4d9e2 (diff)
parent4d60fdadd03d691c0b81ea2b8fb9af66af04a2fb (diff)
Merge "Make fsverity files able to be built independently" into main
Diffstat (limited to 'android/packaging.go')
-rw-r--r--android/packaging.go5
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