Victor Hsieh | f78be53 | 2021-07-08 15:28:28 -0700 | [diff] [blame] | 1 | package { |
| 2 | default_applicable_licenses: ["Android-Apache-2.0"], |
| 3 | } |
| 4 | |
| 5 | java_test_host { |
| 6 | name: "ComposHostTestCases", |
| 7 | srcs: ["java/**/*.java"], |
| 8 | libs: [ |
| 9 | "tradefed", |
| 10 | "compatibility-tradefed", |
| 11 | "compatibility-host-util", |
| 12 | ], |
| 13 | static_libs: [ |
David Brazdil | f9fe9a0 | 2022-07-22 15:36:02 +0100 | [diff] [blame] | 14 | "MicrodroidHostTestHelper", |
Victor Hsieh | f78be53 | 2021-07-08 15:28:28 -0700 | [diff] [blame] | 15 | ], |
Jiyong Park | 29de517 | 2022-02-08 00:37:05 +0900 | [diff] [blame] | 16 | test_suites: [ |
| 17 | "general-tests", |
| 18 | ], |
Alan Stokes | 52b7ba2 | 2022-08-31 14:25:43 +0100 | [diff] [blame] | 19 | // java_test_host doesn't have data_native_libs but jni_libs can be used to put |
| 20 | // native modules under ./lib directory. |
| 21 | // This works because host tools have rpath (../lib and ./lib). |
| 22 | data_native_bins: ["bcc_validator"], |
| 23 | jni_libs: [ |
| 24 | "libcrypto", |
| 25 | "libc++", |
| 26 | ], |
Victor Hsieh | f78be53 | 2021-07-08 15:28:28 -0700 | [diff] [blame] | 27 | } |