diff options
author | 2024-08-28 23:20:03 +0000 | |
---|---|---|
committer | 2024-08-28 23:20:03 +0000 | |
commit | 88a8daf8cae89783450b349d2a4217e6ed0c4a94 (patch) | |
tree | 1af198c5a63adfe46eb2547990038e263d7c792d /java/testing.go | |
parent | ae74fb63f1901342ce42b0ab864502932d6837c1 (diff) | |
parent | 33b3a638a5748d50350787cfb8552557c89f95a2 (diff) |
Merge "Revert^3 "Implement detecting container violations."" into main
Diffstat (limited to 'java/testing.go')
-rw-r--r-- | java/testing.go | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/java/testing.go b/java/testing.go index 03dcee667..0e85022ce 100644 --- a/java/testing.go +++ b/java/testing.go @@ -184,10 +184,6 @@ var PrepareForTestWithJacocoInstrumentation = android.GroupFixturePreparers( host_supported: true, srcs: ["Test.java"], sdk_version: "current", - apex_available: [ - "//apex_available:anyapex", - "//apex_available:platform", - ], } `)), ) @@ -412,6 +408,7 @@ func gatherRequiredDepsForTest() string { "core.current.stubs", "legacy.core.platform.api.stubs", "stable.core.platform.api.stubs", + "android_stubs_current_exportable", "android_system_stubs_current_exportable", "android_test_stubs_current_exportable", @@ -419,11 +416,13 @@ func gatherRequiredDepsForTest() string { "android_system_server_stubs_current_exportable", "core.current.stubs.exportable", "legacy.core.platform.api.stubs.exportable", + "kotlin-stdlib", "kotlin-stdlib-jdk7", "kotlin-stdlib-jdk8", "kotlin-annotations", "stub-annotations", + "aconfig-annotations-lib", "unsupportedappusage", } @@ -436,7 +435,6 @@ func gatherRequiredDepsForTest() string { sdk_version: "none", system_modules: "stable-core-platform-api-stubs-system-modules", compile_dex: true, - is_stubs_module: true, } `, extra) } |