diff options
author | Jiyong Park <jiyong@google.com> | 2021-02-16 06:52:39 +0900 |
---|---|---|
committer | Jiyong Park <jiyong@google.com> | 2021-02-16 06:58:53 +0900 |
commit | 2b0e4908c223860d61ba8b7ed8918621acf9c3a1 (patch) | |
tree | 478da30f6bb7cd17379557d094d965a66f34a263 /java/java.go | |
parent | 404adeefdc26c833d27e290592214c2a2d541938 (diff) |
Revert "`data` dependency of java_test_host can be arch-specific"
This reverts commit cdd9b8392d669731fef6e1415496b181ae80ede9.
Reason: this doesn't work. java_test_host is a multi target module.
Therefore, `arch.<arhc>.data` is not collapsed to `data` by the arch
mutator.
Bug: N/A
Test: N/A
Change-Id: I755b06718bacfe1513f6ad1e734e5a0d0ac57cd8
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 338140bbf..c2cd45746 100644 --- a/java/java.go +++ b/java/java.go @@ -2426,7 +2426,7 @@ type testProperties struct { // list of files or filegroup modules that provide data that should be installed alongside // the test - Data []string `android:"path,arch_variant"` + Data []string `android:"path"` // 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 |