Integration test for CompOS

The only test case initially is to verify that odrefresh can succeed
with dex2oat running in the VM.  The current goal is to keep the test
running.

In the longer term, when we're ready to increase the end-to-end test
coversage, we might want to figure out a better place to host the test,
e.g. possibly odsign_e2e_tests.

Bug: 192690283
Test: atest ComposHostTestCases
Change-Id: Ic1395437d8bc13c72b21e6460242ccb445be2b87
diff --git a/compos/tests/Android.bp b/compos/tests/Android.bp
new file mode 100644
index 0000000..7e00d7b
--- /dev/null
+++ b/compos/tests/Android.bp
@@ -0,0 +1,20 @@
+package {
+    default_applicable_licenses: ["Android-Apache-2.0"],
+}
+
+java_test_host {
+    name: "ComposHostTestCases",
+    srcs: ["java/**/*.java"],
+    libs: [
+        "tradefed",
+        "compatibility-tradefed",
+        "compatibility-host-util",
+    ],
+    static_libs: [
+        "VirtualizationTestHelper",
+    ],
+    test_suites: ["general-tests"],
+    data: [
+        ":CompOSPayloadApp.signing",
+    ],
+}