From 585564cab22ec21467c6e37b091974e2fac43889 Mon Sep 17 00:00:00 2001 From: yangbill Date: Thu, 23 May 2024 10:50:56 +0000 Subject: [PATCH] Allow `required` property be conditional for release_aidl_use_unfrozen Bug: 342336921 Test: cd build/soong/android ; go test -run TestProductVariables Test: add product_variables.release_aidl_use_unfrozen.required to the phony module. Change-Id: I9b934a8fb6245b9b6fd0f2db1e67d5e2876490b2 --- android/variable.go | 1 + 1 file changed, 1 insertion(+) diff --git a/android/variable.go b/android/variable.go index 7e3fd4dd9..9a9556314 100644 --- a/android/variable.go +++ b/android/variable.go @@ -183,6 +183,7 @@ type variableProperties struct { Release_aidl_use_unfrozen struct { Cflags []string Cmd *string + Required []string Vintf_fragments []string } } `android:"arch_variant"`