diff options
author | Jiyong Park <jiyong@google.com> | 2021-02-04 19:42:53 +0900 |
---|---|---|
committer | Jiyong Park <jiyong@google.com> | 2021-02-05 00:29:47 +0900 |
commit | cdd9b8392d669731fef6e1415496b181ae80ede9 (patch) | |
tree | 92fcddb3c67add02372e5ff864981c1c974673ea /java/java.go | |
parent | 599992bc3e6795b94949eefd36e5812df237d03a (diff) |
`data` dependency of java_test_host can be arch-specific
This allows java_test_host to have arch-specific data files. Currently,
VirtualizationHostTestCases needs this to have arch-specific kernels as
its data.
Bug: N/A
Test: m VirtualizationHostTestCases
Change-Id: Ib5680ef48b613955ad92c9bc212184ac75900d3e
Diffstat (limited to 'java/java.go')
-rw-r--r-- | java/java.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/java/java.go b/java/java.go index d49b64f66..78d974b42 100644 --- a/java/java.go +++ b/java/java.go @@ -2383,7 +2383,7 @@ type testProperties struct { // list of files or filegroup modules that provide data that should be installed alongside // the test - Data []string `android:"path"` + Data []string `android:"path,arch_variant"` // Flag to indicate whether or not to create test config automatically. If AndroidTest.xml // doesn't exist next to the Android.bp, this attribute doesn't need to be set to true |