Merge "Specify jnilib partition in Android-<target>.mk"

This commit is contained in:
Jihoon Kang
2022-10-05 16:19:51 +00:00
committed by Gerrit Code Review
9 changed files with 189 additions and 0 deletions

View File

@@ -1638,6 +1638,10 @@ func (p InstallPath) PartitionDir() string {
}
}
func (p InstallPath) Partition() string {
return p.partition
}
// Join creates a new InstallPath with paths... joined with the current path. The
// provided paths... may not use '..' to escape from the current path.
func (p InstallPath) Join(ctx PathContext, paths ...string) InstallPath {