blob: 7473dab3511a1ffd125902ad0eb2b615c58d95b1 [file] [log] [blame]
package {
default_applicable_licenses: ["Android-Apache-2.0"],
}
java_library_static {
name: "MicrodroidTestHelper",
srcs: ["src/java/com/android/microdroid/test/common/*.java"],
host_supported: true,
libs: [
"framework-annotations-lib",
],
}
java_library_static {
name: "MicrodroidDeviceTestHelper",
srcs: ["src/java/com/android/microdroid/test/device/*.java"],
static_libs: [
"androidx.test.runner",
"androidx.test.ext.junit",
"MicrodroidTestHelper",
"truth-prebuilt",
],
// We need to compile against the .impl library which includes the hidden
// APIs. Once the APIs are promoted to @SystemApi we can switch to
// framework-virtualization, which contains API stubs.
libs: ["framework-virtualization.impl"],
}