Add external/musl to the bp2build allowlists

Add external/musl to the bp2build allowlists.  Disable libc_musl_sysroot,
which fails due to a $(locations) reference to a glob that is
unsupported in bazel.

Bug: 259266326
Test: //external/musl:libc_musl builds
Change-Id: Icf0ea2f89854ba3605096dcaa95c1c829af34dc3
This commit is contained in:
Colin Cross
2022-12-05 16:47:44 -08:00
parent 65ebc429e0
commit 20c89f1adf

View File

@@ -164,6 +164,7 @@ var (
"external/lzma/C": Bp2BuildDefaultTrueRecursively,
"external/mdnsresponder": Bp2BuildDefaultTrueRecursively,
"external/minijail": Bp2BuildDefaultTrueRecursively,
"external/musl": Bp2BuildDefaultTrueRecursively,
"external/objenesis": Bp2BuildDefaultTrueRecursively,
"external/openscreen": Bp2BuildDefaultTrueRecursively,
"external/ow2-asm": Bp2BuildDefaultTrueRecursively,
@@ -1305,6 +1306,9 @@ var (
// TODO(b/254476335): disable the following due to this bug
"libapexinfo",
"libapexinfo_tests",
// uses glob in $(locations)
"libc_musl_sysroot",
}
Bp2buildCcLibraryStaticOnlyList = []string{}