Temporarily remove toolchain/ from androidmk_denylist.go
There are defensive `Android.mk` files present in several top-level toolchain/ projects. Enforcing the denylist strictly breaks several builds, so this change temporarily relaxes that by removing our directories from the list. Test: Run Rust's test_compiler.py Change-Id: Ic00a305b78485543d098aeea42c2d2b93f979430
This commit is contained in:
parent
45fd693433
commit
728bb716b6
1 changed files with 2 additions and 1 deletions
|
@ -30,7 +30,8 @@ var androidmk_denylist []string = []string{
|
||||||
"libcore/",
|
"libcore/",
|
||||||
"libnativehelper/",
|
"libnativehelper/",
|
||||||
"pdk/",
|
"pdk/",
|
||||||
"toolchain/",
|
// Add back toolchain/ once defensive Android.mk files are removed
|
||||||
|
//"toolchain/",
|
||||||
}
|
}
|
||||||
|
|
||||||
func blockAndroidMks(ctx Context, androidMks []string) {
|
func blockAndroidMks(ctx Context, androidMks []string) {
|
||||||
|
|
Loading…
Reference in a new issue