Add Android.bp for bpftool am: d8c2e9a027

Original change: https://android-review.googlesource.com/c/platform/external/bpftool/+/1985766

Change-Id: I73d529039e26f8375f11eafab46ee008a37892bf
diff --git a/Android.bp b/Android.bp
new file mode 100644
index 0000000..78ac00a
--- /dev/null
+++ b/Android.bp
@@ -0,0 +1,30 @@
+
+cc_binary_host {
+    name: "bpftool",
+    srcs: [
+        "src/*.c",
+        "src/kernel/bpf/disasm.c",
+    ],
+    exclude_srcs: [
+        "src/jit_disasm.c",
+    ],
+    local_include_dirs: [
+        "include",
+        "include/uapi",
+        "src/kernel/bpf"
+    ],
+    static_libs: [
+        "libbpf",
+        "libcap",
+        "libelf",
+        "libz",
+    ],
+    cflags: [
+        "-DBPFTOOL_WITHOUT_SKELETONS",
+        "-DBPFTOOL_VERSION=\"5.16.0-c446fdacb10d\"",
+        "-DUSE_LIBCAP",
+        "-Wno-missing-field-initializers",
+        "-Wno-pointer-arith",
+        "-Wno-unused-parameter",
+    ]
+}