From 421a4d6d28f5dbd70e2e98dc2d9c13ce9b6765b6 Mon Sep 17 00:00:00 2001 From: MarkDacek Date: Tue, 13 Dec 2022 21:17:08 +0000 Subject: [PATCH] Remove tzdata from staging allowlist. This is redundant as it's already in prod. Test: m nothing Change-Id: I49f75ce9ed514b77df8089a90a0339a4ab3f1d0b --- android/allowlists/allowlists.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/android/allowlists/allowlists.go b/android/allowlists/allowlists.go index 7134c7b46..257832f8b 100644 --- a/android/allowlists/allowlists.go +++ b/android/allowlists/allowlists.go @@ -1359,8 +1359,9 @@ var ( // Staging-mode allowlist. Modules in this list are only built // by Bazel with --bazel-mode-staging. This list should contain modules // which will soon be added to the prod allowlist. + // It is implicit that all modules in ProdMixedBuildsEnabledList will + // also be built - do not add them to this list. StagingMixedBuildsEnabledList = []string{ "com.android.adbd", - "com.android.tzdata", } )