aboutsummaryrefslogtreecommitdiffstats
path: root/cc/androidmk.go
diff options
context:
space:
mode:
authorColin Cross <ccross@android.com>2017-03-27 16:27:50 -0700
committerColin Cross <ccross@android.com>2017-03-27 16:27:50 -0700
commita929db05b3de44b64dbcaeb2597423c671ac0db6 (patch)
tree48dfca9fc37101e30c2651931febb8e638fb75d6 /cc/androidmk.go
parentdc03a8407e24b5524c0e9fc96336620815516991 (diff)
downloadbuild_soong-a929db05b3de44b64dbcaeb2597423c671ac0db6.tar.gz
build_soong-a929db05b3de44b64dbcaeb2597423c671ac0db6.tar.bz2
build_soong-a929db05b3de44b64dbcaeb2597423c671ac0db6.zip
Add support for test_suites property on cc_test modules
Add a test_suites property that is passed through to make as LOCAL_COMPATIBILITY_SUITES. Test: m -j checkbuild, examine out/soong/Android-${TARGET_PRODUCT}.mk Bug: 35394669 Change-Id: If05b0f5f7d6dd85228546123bebe32859bcc8186
Diffstat (limited to 'cc/androidmk.go')
-rw-r--r--cc/androidmk.go8
1 files changed, 8 insertions, 0 deletions
diff --git a/cc/androidmk.go b/cc/androidmk.go
index f45fbbe5..7acc244b 100644
--- a/cc/androidmk.go
+++ b/cc/androidmk.go
@@ -200,6 +200,14 @@ func (test *testBinary) AndroidMk(ctx AndroidMkContext, ret *android.AndroidMkDa
ret.SubName = "_" + test.binaryDecorator.Properties.Stem
}
+ ret.Extra = append(ret.Extra, func(w io.Writer, outputFile android.Path) error {
+ if len(test.Properties.Test_suites) > 0 {
+ fmt.Fprintln(w, "LOCAL_COMPATIBILITY_SUITES :=",
+ strings.Join(test.Properties.Test_suites, " "))
+ }
+ return nil
+ })
+
var testFiles []string
for _, d := range test.data {
rel := d.Rel()