diff options
author | 2024-08-27 17:27:52 +0000 | |
---|---|---|
committer | 2024-08-27 17:27:52 +0000 | |
commit | 601939d0a78e393058c2582b9ff73ffd500f6747 (patch) | |
tree | 4c9fefbb31e4038a2251a78c09ee511b54ca8f7f /android/container.go | |
parent | 1282d272918875cd8a15ea8e1cc4ac917d164266 (diff) |
Add jacocoagent to allowlisted dependencies
jacocoagent is implicitly added as a dependency in coverage builds, and
is not installed on the device.
Test: m nothing
Bug: 338660802
Change-Id: Icf14ce5f9b0819a3c5fbe74cf1674719859ad5c6
Diffstat (limited to 'android/container.go')
-rw-r--r-- | android/container.go | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/android/container.go b/android/container.go index 10aff4d2b..43dccf635 100644 --- a/android/container.go +++ b/android/container.go @@ -93,6 +93,10 @@ var globallyAllowlistedDependencies = []string{ // This module is implicitly added as a dependency for java modules even when the // dependency specifies sdk_version. "framework-res", + + // jacocoagent is implicitly added as a dependency in coverage builds, and is not installed + // on the device. + "jacocoagent", } // Returns true when the dependency is globally allowlisted for inter-container dependency |