blob: 41958caa903962f900fac51b6c2677f3e5340cab [file] [log] [blame]
Victor Hsiehf78be532021-07-08 15:28:28 -07001package {
2 default_applicable_licenses: ["Android-Apache-2.0"],
3}
4
5java_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 Brazdilf9fe9a02022-07-22 15:36:02 +010014 "MicrodroidHostTestHelper",
Victor Hsiehf78be532021-07-08 15:28:28 -070015 ],
Jiyong Park29de5172022-02-08 00:37:05 +090016 test_suites: [
17 "general-tests",
18 ],
Alan Stokes52b7ba22022-08-31 14:25:43 +010019 // 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 Hsiehf78be532021-07-08 15:28:28 -070027}