blob: 1213a1667c81a4019cdf56cbf51878f354bd3665 [file] [log] [blame]
Victor Hsiehf78be532021-07-08 15:28:28 -07001package {
Aditya Choudhary53696172024-02-05 15:46:19 +00002 default_team: "trendy_team_virtualization",
Victor Hsiehf78be532021-07-08 15:28:28 -07003 default_applicable_licenses: ["Android-Apache-2.0"],
4}
5
6java_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 Brazdilf9fe9a02022-07-22 15:36:02 +010015 "MicrodroidHostTestHelper",
Victor Hsiehf78be532021-07-08 15:28:28 -070016 ],
Jiyong Park29de5172022-02-08 00:37:05 +090017 test_suites: [
18 "general-tests",
19 ],
Alan Stokes52b7ba22022-08-31 14:25:43 +010020 // 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 Scull00d5dbb2023-01-15 21:29:05 +000023 data_native_bins: ["hwtrust"],
Alan Stokes52b7ba22022-08-31 14:25:43 +010024 jni_libs: [
25 "libcrypto",
26 "libc++",
27 ],
Victor Hsiehf78be532021-07-08 15:28:28 -070028}