From 98bf5cca87122604f89ba5283eed3296bd3dd280 Mon Sep 17 00:00:00 2001 From: Jingwen Chen Date: Wed, 14 Dec 2022 13:27:25 +0000 Subject: [PATCH] Add com.android.adbd and adbd_test to AOSP prod allowlist. Test: presubmits Bug: 260617515 Fixes: 260617515 Change-Id: Iadfd5ec2793d98d90c4be6a30ff706735327c299 --- android/allowlists/allowlists.go | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/android/allowlists/allowlists.go b/android/allowlists/allowlists.go index 27f1402e2..e25dc4b6c 100644 --- a/android/allowlists/allowlists.go +++ b/android/allowlists/allowlists.go @@ -1408,6 +1408,13 @@ var ( ProdMixedBuildsEnabledList = []string{ "com.android.tzdata", "test1_com.android.tzdata", + "com.android.adbd", + "test_com.android.adbd", + "adbd_test", + "adb_crypto_test", + "adb_pairing_auth_test", + "adb_pairing_connection_test", + "adb_tls_connection_test", } // Staging-mode allowlist. Modules in this list are only built @@ -1415,12 +1422,5 @@ var ( // 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", - "adbd_test", - "adb_crypto_test", - "adb_pairing_auth_test", - "adb_pairing_connection_test", - "adb_tls_connection_test", - } + StagingMixedBuildsEnabledList = []string{} )