Merge "Generate image variation without version" into main

This commit is contained in:
Kiyoung Kim
2024-01-05 04:57:26 +00:00
committed by Gerrit Code Review
8 changed files with 127 additions and 45 deletions

View File

@@ -148,6 +148,7 @@ func TestAndroidMkCcLibrary(t *testing.T) {
cc_library {
name: "server_configurable_flags",
srcs: ["server_configurable_flags.cc"],
vendor_available: true,
}
`
result := android.GroupFixturePreparers(
@@ -155,7 +156,7 @@ func TestAndroidMkCcLibrary(t *testing.T) {
cc.PrepareForTestWithCcDefaultModules).
ExtendWithErrorHandler(android.FixtureExpectsNoErrors).RunTestWithBp(t, bp)
module := result.ModuleForTests("my_cc_library", "android_arm64_armv8-a_shared").Module()
module := result.ModuleForTests("my_cc_library", "android_vendor_arm64_armv8-a_shared").Module()
entry := android.AndroidMkEntriesForTest(t, result.TestContext, module)[0]