summaryrefslogtreecommitdiff
path: root/python
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 /python
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 'python')
-rw-r--r--python/Android.bp1
-rw-r--r--python/test.go4
2 files changed, 0 insertions, 5 deletions
diff --git a/python/Android.bp b/python/Android.bp
index 14e83c184..3b5445510 100644
--- a/python/Android.bp
+++ b/python/Android.bp
@@ -10,7 +10,6 @@ bootstrap_go_package {
"soong-android",
"soong-tradefed",
"soong-cc",
- "soong-testing",
],
srcs: [
"binary.go",
diff --git a/python/test.go b/python/test.go
index acf5b26da..9f57bea1b 100644
--- a/python/test.go
+++ b/python/test.go
@@ -17,8 +17,6 @@ package python
import (
"fmt"
- "android/soong/testing"
-
"github.com/google/blueprint/proptools"
"android/soong/android"
@@ -208,8 +206,6 @@ func (p *PythonTestModule) GenerateAndroidBuildActions(ctx android.ModuleContext
installDir := installDir(ctx, "nativetest", "nativetest64", ctx.ModuleName())
installedData := ctx.InstallTestData(installDir, p.data)
p.installedDest = ctx.InstallFile(installDir, p.installSource.Base(), p.installSource, installedData...)
-
- android.SetProvider(ctx, testing.TestModuleProviderKey, testing.TestModuleProviderData{})
}
func (p *PythonTestModule) AndroidMkEntries() []android.AndroidMkEntries {