1package { 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: [ 14 "MicrodroidHostTestHelper", 15 ], 16 test_suites: [ 17 "general-tests", 18 ], 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: ["hwtrust"], 23 jni_libs: [ 24 "libcrypto", 25 "libc++", 26 ], 27} 28