From 4cb1155368bd71e09e8abc6cd3fcd5be62dbd9f4 Mon Sep 17 00:00:00 2001 From: Cole Faust Date: Fri, 12 Jan 2024 16:23:56 -0800 Subject: [PATCH] Denylist com.google.pixel.camera.hal.manifest This is an internal-only genrule, that was previously included in a denylist in vendor/google/build. However, not all partners have that file, so some products ended up setting BUILD_BROKEN_GENRULE_SANDBOXING when that file didn't exist. Moving it to the aosp allowlist lets us remove those build broken flags. I checked with krzysio@ and yromanenko@ and they're ok with putting this name in aosp. Bug: 307824623 Test: Presubmits Change-Id: Ia3f24a5c8c8efc62bdc84435343cafd1dac9afed --- genrule/allowlists.go | 1 + 1 file changed, 1 insertion(+) diff --git a/genrule/allowlists.go b/genrule/allowlists.go index cbefa4585..33836509a 100644 --- a/genrule/allowlists.go +++ b/genrule/allowlists.go @@ -24,6 +24,7 @@ var ( SandboxingDenyModuleList = []string{ // go/keep-sorted start "aidl_camera_build_version", + "com.google.pixel.camera.hal.manifest", // go/keep-sorted end }