diff options
| -rw-r--r-- | android/allowlists/allowlists.go | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/android/allowlists/allowlists.go b/android/allowlists/allowlists.go index 5203fa085..33655d02d 100644 --- a/android/allowlists/allowlists.go +++ b/android/allowlists/allowlists.go @@ -281,6 +281,7 @@ var ( "packages/modules/adb/proto": Bp2BuildDefaultTrueRecursively, "packages/modules/adb/tls": Bp2BuildDefaultTrueRecursively, "packages/modules/NetworkStack/common/captiveportal": Bp2BuildDefaultTrue, + "packages/modules/NeuralNetworks/apex": Bp2BuildDefaultTrue, "packages/providers/MediaProvider/tools/dialogs": Bp2BuildDefaultFalse, // TODO(b/242834374) "packages/screensavers/Basic": Bp2BuildDefaultTrue, "packages/services/Car/tests/SampleRearViewCamera": Bp2BuildDefaultFalse, // TODO(b/242834321) @@ -433,10 +434,6 @@ var ( "com.android.media.swcodec-mediaswcodec.rc", "com.android.media.swcodec.certificate", "com.android.media.swcodec.key", - "com.android.neuralnetworks", - "com.android.neuralnetworks-androidManifest", - "com.android.neuralnetworks.certificate", - "com.android.neuralnetworks.key", "flatbuffer_headers", "framework-connectivity-protos", "gemmlowp_headers", @@ -1450,7 +1447,9 @@ 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{} + StagingMixedBuildsEnabledList = []string{ + "com.android.neuralnetworks", + } // These should be the libs that are included by the apexes in the ProdMixedBuildsEnabledList ProdDclaMixedBuildsEnabledList = []string{ |