Convert packages/Shell/**/Android.mk file to Android.bp

See build/soong/README.md for more information.

Bug: 122332340
Test: atest ShellTests
(same errors as baseline)
Change-Id: I63b777342359e0b42ccd554b7d056c7431178380
diff --git a/packages/Shell/Android.bp b/packages/Shell/Android.bp
new file mode 100644
index 0000000..aaaf044
--- /dev/null
+++ b/packages/Shell/Android.bp
@@ -0,0 +1,14 @@
+android_app {
+    name: "Shell",
+    srcs: ["src/**/*.java",":dumpstate_aidl"],
+    aidl: {
+        include_dirs: ["frameworks/native/cmds/dumpstate/binder"],
+    },
+    static_libs: ["androidx.legacy_legacy-support-v4"],
+    platform_apis: true,
+    certificate: "platform",
+    privileged: true,
+    jacoco: {
+        include_filter: ["com.android.shell.*"],
+    },
+}