Add remote dialer prebuilt defintions

These were previously defined in packages/apps/Dialer/Android.mk using
"../..". That's not allowed in Soong or Bazel, so move the definitions
here. This will also make it simpler to understand which files are
actually used.

Bug: 244341573
Test: presubmit
Change-Id: I87ccf8330c7a709ab0d9de4b15d10d875ba66bc9
Merged-In: I87ccf8330c7a709ab0d9de4b15d10d875ba66bc9
diff --git a/Android.bp b/Android.bp
index 356c70a..80deb37 100644
--- a/Android.bp
+++ b/Android.bp
@@ -87,3 +87,24 @@
     processor_class: "com.bumptech.glide.annotation.compiler.GlideAnnotationProcessor",
     use_tools_jar: true,
 }
+
+java_import {
+    name: "dialer-glide-target-deps",
+    visibility: ["//packages/apps/Dialer"],
+    jars: [
+        "com/github/bumptech/glide/disklrucache/SNAPSHOT/disklrucache-SNAPSHOT.jar",
+        "com/github/bumptech/glide/gifdecoder/SNAPSHOT/gifdecoder-SNAPSHOT.jar",
+        "com/github/bumptech/glide/glide/SNAPSHOT/glide-SNAPSHOT.jar",
+        "com/github/bumptech/glide/annotation/SNAPSHOT/annotation-SNAPSHOT.jar",
+    ],
+    sdk_version: "current",
+}
+
+java_import_host {
+    name: "dialer-glide-host-deps",
+    visibility: ["//packages/apps/Dialer"],
+    jars: [
+        "com/github/bumptech/glide/annotation/SNAPSHOT/annotation-SNAPSHOT.jar",
+        "com/github/bumptech/glide/compiler/SNAPSHOT/compiler-SNAPSHOT.jar",
+    ],
+}