Merge "Remove bazel_module.label from bionic genrules" am: eb33b5b7a8

Original change: https://android-review.googlesource.com/c/platform/bionic/+/1611244

Change-Id: I246d7af7be08f51de7096e242013c5d101cd2158
This commit is contained in:
Liz Kammer 2021-03-16 21:54:50 +00:00 committed by Automerger Merge Worker
commit 2a2bebb557

View file

@ -1290,7 +1290,6 @@ genrule {
cmd: "$(location :bionic-gensyscalls) arm $(in) > $(out)", cmd: "$(location :bionic-gensyscalls) arm $(in) > $(out)",
bazel_module: { bazel_module: {
bp2build_available: true, bp2build_available: true,
label: "//bionic/libc:syscalls-arm.S"
} }
} }
@ -1302,7 +1301,6 @@ genrule {
cmd: "$(location :bionic-gensyscalls) arm64 $(in) > $(out)", cmd: "$(location :bionic-gensyscalls) arm64 $(in) > $(out)",
bazel_module: { bazel_module: {
bp2build_available: true, bp2build_available: true,
label: "//bionic/libc:syscalls-arm64.S"
}, },
} }
@ -1314,7 +1312,6 @@ genrule {
cmd: "$(location :bionic-gensyscalls) x86 $(in) > $(out)", cmd: "$(location :bionic-gensyscalls) x86 $(in) > $(out)",
bazel_module: { bazel_module: {
bp2build_available: true, bp2build_available: true,
label: "//bionic/libc:syscalls-x86.S"
}, },
} }
@ -1326,7 +1323,6 @@ genrule {
cmd: "$(location :bionic-gensyscalls) x86_64 $(in) > $(out)", cmd: "$(location :bionic-gensyscalls) x86_64 $(in) > $(out)",
bazel_module: { bazel_module: {
bp2build_available: true, bp2build_available: true,
label: "//bionic/libc:syscalls-x86_64.S"
}, },
} }