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) {
|
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 = filepath.Join("bin", cc.RelativeInstallPath())
|
|
||||||
dirInApex = "bin"
|
|
||||||
fileToCopy = cc.OutputFile().Path()
|
fileToCopy = cc.OutputFile().Path()
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
@@ -696,10 +696,9 @@ func TestFilesInSubDir(t *testing.T) {
|
|||||||
ensureListContains(t, dirs, "lib/foo")
|
ensureListContains(t, dirs, "lib/foo")
|
||||||
ensureListContains(t, dirs, "lib/foo/bar")
|
ensureListContains(t, dirs, "lib/foo/bar")
|
||||||
|
|
||||||
// TODO(b/123721777) respect relative path for binaries
|
ensureListContains(t, dirs, "bin")
|
||||||
// ensureListContains(t, dirs, "bin")
|
ensureListContains(t, dirs, "bin/foo")
|
||||||
// ensureListContains(t, dirs, "bin/foo")
|
ensureListContains(t, dirs, "bin/foo/bar")
|
||||||
// ensureListContains(t, dirs, "bin/foo/bar")
|
|
||||||
}
|
}
|
||||||
|
|
||||||
func TestUseVendor(t *testing.T) {
|
func TestUseVendor(t *testing.T) {
|
||||||
|
Reference in New Issue
Block a user