Add prebuilt_boot_image and add boot_images to sdk

Bug: 177892522
Test: m nothing
Change-Id: I640359acd6840507f32d7034c97d4d1c7ff591e9
This commit is contained in:
Paul Duffin
2021-03-10 15:00:46 +00:00
parent a55aefd57b
commit f7f65dafb4
4 changed files with 154 additions and 1 deletions

View File

@@ -29,3 +29,12 @@ func TestUnknownBootImage(t *testing.T) {
}
`)
}
func TestUnknownPrebuiltBootImage(t *testing.T) {
testJavaError(t, "image_name: Unknown image name \\\"unknown\\\", expected one of art, boot", `
prebuilt_boot_image {
name: "unknown-boot-image",
image_name: "unknown",
}
`)
}