diff options
author | 2024-10-21 16:26:12 -0700 | |
---|---|---|
committer | 2024-10-24 10:20:17 -0700 | |
commit | 830f56a78e91ba02314edd6937fcf73f937635ba (patch) | |
tree | cade4f3a63cf4674f044feb3df312e5fbdf5d94c /python | |
parent | 44b35ecc43347292a95dec396244f083f77c9bdc (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.bp | 1 | ||||
-rw-r--r-- | python/test.go | 4 |
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 { |