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