diff options
author | 2023-04-12 17:32:19 -0700 | |
---|---|---|
committer | 2023-04-13 16:10:59 -0700 | |
commit | d82f036b89962ceaeb50bc7ff9c23bed7cd64131 (patch) | |
tree | dbcac5150a5954f3591dd7a8028e8c6c646eae0c /python/binary.go | |
parent | 01add2893c0b9d6da1e631de0c93bba91865c96d (diff) |
bp2build support for python_test(_host)
There was a request for using b with python tests. bp2build python
tests exactly the same way as python binaries so that they can be
used with `b`.
Bug: None
Test: go test
Change-Id: Id68a6a73572745a4885b3e5bb1b8452e36baa982
Diffstat (limited to 'python/binary.go')
-rw-r--r-- | python/binary.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/binary.go b/python/binary.go index 75135f345..a5db2f6ef 100644 --- a/python/binary.go +++ b/python/binary.go @@ -37,7 +37,7 @@ type BinaryProperties struct { // this file must also be listed in srcs. // If left unspecified, module name is used instead. // If name doesn’t match any filename in srcs, main must be specified. - Main *string `android:"arch_variant"` + Main *string // set the name of the output binary. Stem *string `android:"arch_variant"` |