Merge "respect relative_install_path for binaries in APEXes"
This commit is contained in:
@@ -613,9 +613,7 @@ func getCopyManifestForNativeLibrary(cc *cc.Module, handleSpecialLibs bool) (fil
|
||||
}
|
||||
|
||||
func getCopyManifestForExecutable(cc *cc.Module) (fileToCopy android.Path, dirInApex string) {
|
||||
// TODO(b/123721777) respect relative_install_path also for binaries
|
||||
// dirInApex = filepath.Join("bin", cc.RelativeInstallPath())
|
||||
dirInApex = "bin"
|
||||
dirInApex = filepath.Join("bin", cc.RelativeInstallPath())
|
||||
fileToCopy = cc.OutputFile().Path()
|
||||
return
|
||||
}
|
||||
|
@@ -696,10 +696,9 @@ func TestFilesInSubDir(t *testing.T) {
|
||||
ensureListContains(t, dirs, "lib/foo")
|
||||
ensureListContains(t, dirs, "lib/foo/bar")
|
||||
|
||||
// TODO(b/123721777) respect relative path for binaries
|
||||
// ensureListContains(t, dirs, "bin")
|
||||
// ensureListContains(t, dirs, "bin/foo")
|
||||
// ensureListContains(t, dirs, "bin/foo/bar")
|
||||
ensureListContains(t, dirs, "bin")
|
||||
ensureListContains(t, dirs, "bin/foo")
|
||||
ensureListContains(t, dirs, "bin/foo/bar")
|
||||
}
|
||||
|
||||
func TestUseVendor(t *testing.T) {
|
||||
|
Reference in New Issue
Block a user