From c602b7d8817fdc0b7fbf1942b87c0f6eecf32aa2 Mon Sep 17 00:00:00 2001 From: Colin Cross Date: Fri, 5 May 2017 13:36:36 -0700 Subject: [PATCH] Allow "required" property to vary by arch Renderscript needs to require different bitcode files based on architecture. Test: builds Change-Id: Ifffa16c892a7f8e309f1c5652472fba44cd2e786 --- android/module.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/android/module.go b/android/module.go index a38c6177c..90d61e2aa 100644 --- a/android/module.go +++ b/android/module.go @@ -154,7 +154,7 @@ type commonProperties struct { Init_rc []string // names of other modules to install if this module is installed - Required []string + Required []string `android:"arch_variant"` // Set by TargetMutator CompileTarget Target `blueprint:"mutated"`