diff options
author | 2020-06-12 16:38:45 -0700 | |
---|---|---|
committer | 2020-07-27 09:14:06 -0700 | |
commit | dd849a81f30d38db789499e1e404def6d3f71783 (patch) | |
tree | 69b046c4a98914ffd496fdfbacab0db3d78f5cef /python/binary.go | |
parent | 41b4d79dab95b97352dfbc894e65eec7832211ed (diff) |
Add `data_native_bins` property to java_test_host
When multiple os/arch variants are supported, java_test_host could not
find a matching arch due to java having arch:common, whereas native
binaries support a specific architecture. This change adds the property
`data_native_bins` in order to support binaries with the appropriate
os/arch variants.
Test: m FirmwareDtboVerification with data_native_bins
Test: forrest
Bug: 153848038
Change-Id: I45adebff0fde2811d5ef5620c697b97b768c951f
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 695fa123b..5a7492648 100644 --- a/python/binary.go +++ b/python/binary.go @@ -65,7 +65,7 @@ type IntermPathProvider interface { } var ( - stubTemplateHost = "build/soong/python/scripts/stub_template_host.txt" + StubTemplateHost = "build/soong/python/scripts/stub_template_host.txt" ) func NewBinary(hod android.HostOrDeviceSupported) (*Module, *binaryDecorator) { |