secilc: Migrate to soong

Bug: 37512442
Test: build and boot Marlin
Change-Id: Ie02b3dc3db0e597c9ac7e93c6684fcd7867c531e
diff --git a/secilc/Android.bp b/secilc/Android.bp
new file mode 100644
index 0000000..022c74c
--- /dev/null
+++ b/secilc/Android.bp
@@ -0,0 +1,20 @@
+common_CFLAGS = [
+    "-Wall",
+    "-Werror",
+    "-Wshadow",
+]
+
+cc_binary {
+    name: "secilc",
+    host_supported: true,
+    cflags: common_CFLAGS,
+    srcs: ["secilc.c"],
+    target: {
+        android: {
+            static_libs: ["libsepol"],
+        },
+        host: {
+            shared_libs: ["libsepol"],
+        },
+    },
+}