Changes to bionic/libc to demonstrate mixed builds.

Test: source build/envsetup.sh && lunch 16 && source
build/soong/bazel/bazelenv.sh && m, then verify ninja
file was based on intermediates from bazel-out

Change-Id: I89f320dd58083710012ea1f8e3902e723602ea37
diff --git a/libc/Android.bp b/libc/Android.bp
index 447d17b..cfa2182 100644
--- a/libc/Android.bp
+++ b/libc/Android.bp
@@ -1266,6 +1266,7 @@
     srcs: ["SYSCALLS.TXT"],
     tool_files: [":bionic-gensyscalls"],
     cmd: "$(location :bionic-gensyscalls) arm $(in) > $(out)",
+    bazel_module: { label: "//bionic/libc:syscalls-arm" }
 }
 
 genrule {
@@ -1274,6 +1275,7 @@
     srcs: ["SYSCALLS.TXT"],
     tool_files: [":bionic-gensyscalls"],
     cmd: "$(location :bionic-gensyscalls) arm64 $(in) > $(out)",
+    bazel_module: { label: "//bionic/libc:syscalls-arm64" },
 }
 
 genrule {
@@ -1282,6 +1284,7 @@
     srcs: ["SYSCALLS.TXT"],
     tool_files: [":bionic-gensyscalls"],
     cmd: "$(location :bionic-gensyscalls) x86 $(in) > $(out)",
+    bazel_module: { label: "//bionic/libc:syscalls-x86" },
 }
 
 genrule {
@@ -1290,6 +1293,7 @@
     srcs: ["SYSCALLS.TXT"],
     tool_files: [":bionic-gensyscalls"],
     cmd: "$(location :bionic-gensyscalls) x86_64 $(in) > $(out)",
+    bazel_module: { label: "//bionic/libc:syscalls-x86_64" },
 }
 
 cc_library_static {