summaryrefslogtreecommitdiff
path: root/java/app.go
diff options
context:
space:
mode:
author Cole Faust <colefaust@google.com> 2024-10-21 16:26:12 -0700
committer Cole Faust <colefaust@google.com> 2024-10-24 10:20:17 -0700
commit830f56a78e91ba02314edd6937fcf73f937635ba (patch)
treecade4f3a63cf4674f044feb3df312e5fbdf5d94c /java/app.go
parent44b35ecc43347292a95dec396244f083f77c9bdc (diff)
Remove testing package
The testing package defined test_spec and code_metadata module types, but they were never used and the owner left google. Bug: 372091092 Test: Presubmits Change-Id: I2d34ce173ec46483719a1d333180937b3da1fa04
Diffstat (limited to 'java/app.go')
-rw-r--r--java/app.go3
1 files changed, 0 insertions, 3 deletions
diff --git a/java/app.go b/java/app.go
index addbc28b0..2d75ccdf9 100644
--- a/java/app.go
+++ b/java/app.go
@@ -22,8 +22,6 @@ import (
"path/filepath"
"strings"
- "android/soong/testing"
-
"github.com/google/blueprint"
"github.com/google/blueprint/proptools"
@@ -1443,7 +1441,6 @@ func (a *AndroidTest) GenerateAndroidBuildActions(ctx android.ModuleContext) {
a.data = append(a.data, android.PathsForModuleSrc(ctx, a.testProperties.Device_common_data)...)
a.data = append(a.data, android.PathsForModuleSrc(ctx, a.testProperties.Device_first_data)...)
a.data = append(a.data, android.PathsForModuleSrc(ctx, a.testProperties.Device_first_prefer32_data)...)
- android.SetProvider(ctx, testing.TestModuleProviderKey, testing.TestModuleProviderData{})
android.SetProvider(ctx, tradefed.BaseTestProviderKey, tradefed.BaseTestProviderData{
InstalledFiles: a.data,
OutputFile: a.OutputFile(),