aboutsummaryrefslogtreecommitdiffstats
path: root/android
diff options
context:
space:
mode:
authorColin Cross <ccross@android.com>2017-05-05 13:36:36 -0700
committerColin Cross <ccross@android.com>2017-05-05 18:22:30 -0700
commitc602b7d8817fdc0b7fbf1942b87c0f6eecf32aa2 (patch)
tree520eadac43ccc17272ca2bac73e907b0b049e8e9 /android
parent2a252bef50fc3f0426c55c7524bb193b9afabc4a (diff)
downloadbuild_soong-c602b7d8817fdc0b7fbf1942b87c0f6eecf32aa2.tar.gz
build_soong-c602b7d8817fdc0b7fbf1942b87c0f6eecf32aa2.tar.bz2
build_soong-c602b7d8817fdc0b7fbf1942b87c0f6eecf32aa2.zip
Allow "required" property to vary by arch
Renderscript needs to require different bitcode files based on architecture. Test: builds Change-Id: Ifffa16c892a7f8e309f1c5652472fba44cd2e786
Diffstat (limited to 'android')
-rw-r--r--android/module.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/android/module.go b/android/module.go
index a38c6177..90d61e2a 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"`