Add blueprint for prebuilt APEXes.

Test: Presubmits
Bug: 172480615
Change-Id: I956e86305aae5bbc668389a649f733e79981cb07
diff --git a/module/Android.bp b/module/Android.bp
new file mode 100644
index 0000000..fe9e0f0
--- /dev/null
+++ b/module/Android.bp
@@ -0,0 +1,37 @@
+prebuilt_apex {
+    name: "com.android.art.debug",
+    overrides: ["com.android.art.debug"],
+    arch: {
+        arm: {
+            src: "com.android.art.debug-arm.apex",
+        },
+        arm64: {
+            src: "com.android.art.debug-arm64.apex",
+        },
+        x86: {
+            src: "com.android.art.debug-x86.apex",
+        },
+        x86_64: {
+            src: "com.android.art.debug-x86_64.apex",
+        },
+    },
+}
+
+prebuilt_apex {
+    name: "com.android.art",
+    overrides: ["com.android.art"],
+    arch: {
+        arm: {
+            src: "com.android.art-arm.apex",
+        },
+        arm64: {
+            src: "com.android.art-arm64.apex",
+        },
+        x86: {
+            src: "com.android.art-x86.apex",
+        },
+        x86_64: {
+            src: "com.android.art-x86_64.apex",
+        },
+    },
+}