diff options
Diffstat (limited to 'android/neverallow.go')
-rw-r--r-- | android/neverallow.go | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/android/neverallow.go b/android/neverallow.go index fdcbe1cc8..e12e8b771 100644 --- a/android/neverallow.go +++ b/android/neverallow.go @@ -230,7 +230,7 @@ func createCcStubsRule() Rule { func createUncompressDexRules() []Rule { return []Rule{ NeverAllow(). - NotIn("art"). + NotIn("art", "cts/hostsidetests/compilation"). WithMatcher("uncompress_dex", isSetMatcherInstance). Because("uncompress_dex is only allowed for certain jars for test in art."), } @@ -322,9 +322,6 @@ func createFilesystemIsAutoGeneratedRule() Rule { func createKotlinPluginRule() []Rule { kotlinPluginProjectsAllowedList := []string{ - // TODO: Migrate compose plugin to the bundled compiler plugin - // Actual path prebuilts/sdk/current/androidx/m2repository/androidx/compose/compiler/compiler-hosted - "prebuilts/sdk/current/androidx", "external/kotlinc", } |