Loading etc/prebuilt_etc.go +1 −1 Original line number Diff line number Diff line Loading @@ -725,7 +725,7 @@ func PrebuiltFontFactory() android.Module { module := &PrebuiltEtc{} InitPrebuiltEtcModule(module, "fonts") // This module is device-only android.InitAndroidArchModule(module, android.DeviceSupported, android.MultilibFirst) android.InitAndroidArchModule(module, android.DeviceSupported, android.MultilibCommon) android.InitDefaultableModule(module) return module } Loading etc/prebuilt_etc_test.go +1 −1 Original line number Diff line number Diff line Loading @@ -469,7 +469,7 @@ func TestPrebuiltFontInstallDirPath(t *testing.T) { } `) p := result.Module("foo.conf", "android_arm64_armv8-a").(*PrebuiltEtc) p := result.Module("foo.conf", "android_common").(*PrebuiltEtc) expected := "out/soong/target/product/test_device/system/fonts" android.AssertPathRelativeToTopEquals(t, "install dir", expected, p.installDirPaths[0]) } Loading Loading
etc/prebuilt_etc.go +1 −1 Original line number Diff line number Diff line Loading @@ -725,7 +725,7 @@ func PrebuiltFontFactory() android.Module { module := &PrebuiltEtc{} InitPrebuiltEtcModule(module, "fonts") // This module is device-only android.InitAndroidArchModule(module, android.DeviceSupported, android.MultilibFirst) android.InitAndroidArchModule(module, android.DeviceSupported, android.MultilibCommon) android.InitDefaultableModule(module) return module } Loading
etc/prebuilt_etc_test.go +1 −1 Original line number Diff line number Diff line Loading @@ -469,7 +469,7 @@ func TestPrebuiltFontInstallDirPath(t *testing.T) { } `) p := result.Module("foo.conf", "android_arm64_armv8-a").(*PrebuiltEtc) p := result.Module("foo.conf", "android_common").(*PrebuiltEtc) expected := "out/soong/target/product/test_device/system/fonts" android.AssertPathRelativeToTopEquals(t, "install dir", expected, p.installDirPaths[0]) } Loading