diff options
author | 2017-11-03 16:54:05 -0700 | |
---|---|---|
committer | 2017-11-07 13:13:59 -0800 | |
commit | c9c6cb77d8af6034675ad4d80b0da54273156220 (patch) | |
tree | 88476cc7e782ebd9dc25dd926baa6d5e0af1af39 /python/binary.go | |
parent | 4647be4afe1dd6d0c4ce2da9e053f27d770216dd (diff) |
Add support for test_suites for python_binary_host and python_test_host
Test: manually add this property, and then check Android-aosp_arm.mk
Bug: b/35394669
Change-Id: Iddaf677839714daf4f8913ff4bf9e944d38c18db
Diffstat (limited to 'python/binary.go')
-rw-r--r-- | python/binary.go | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/python/binary.go b/python/binary.go index c2e38bf39..95b0606eb 100644 --- a/python/binary.go +++ b/python/binary.go @@ -40,6 +40,10 @@ type BinaryProperties struct { // append to the name of the output binary. Suffix string `android:"arch_variant"` + + // list of compatibility suites (for example "cts", "vts") that the module should be + // installed into. + Test_suites []string `android:"arch_variant"` } type binaryDecorator struct { |