Export jars needed to compile new lint checkers

Bug: 153485543
Test: m checkbuild
Change-Id: I969779f4fa3b63f77f9da27d73130e50a7219634
Merged-In: I969779f4fa3b63f77f9da27d73130e50a7219634
(cherry picked from commit 1b7d724e36df1caab8b6bebbdd0b379eef8d6f69)
diff --git a/Android.bp b/Android.bp
new file mode 100644
index 0000000..7ce2b06
--- /dev/null
+++ b/Android.bp
@@ -0,0 +1,15 @@
+java_import_host {
+    name: "lint_api",
+    jars: [
+        "tools/lib/lint/lint-api.jar",
+        "tools/lib/lint/lint-checks.jar",
+
+        // A subset of the jars listed in MANIFEST.MF in
+        // tools/lib/lint-classpath.jar needed to provide dependencies
+        // of lint-api.jar and lint-checks.jar.
+        "tools/lib/external/com/google/guava/guava/28.1-jre/guava-28.1-jre.jar",
+        "tools/lib/external/lint-psi/intellij-core/intellij-core-all.jar",
+        "tools/lib/external/lint-psi/kotlin-compiler/kotlin-compiler-all.jar",
+        "tools/lib/external/lint-psi/uast/uast-all.jar",
+    ],
+}