Revert "Remove full api surface from-text stubs java_api_library..."

Revert submission 2982300-java_api_library_non_sdk

Reason for revert: DroidMonitor: Potential culprit for b/357648959 - verifying through ABTD before revert submission. This is part of the standard investigation process, and does not mean your CL will be reverted.

Reverted changes: /q/submissionid:2982300-java_api_library_non_sdk

Change-Id: I4224efbb47dc5ecf9afd7e3c9cd00b59a6c337ae
diff --git a/api/api_test.go b/api/api_test.go
index fb26f82..47d1670 100644
--- a/api/api_test.go
+++ b/api/api_test.go
@@ -52,12 +52,6 @@
 		"core.current.stubs",
 		"ext",
 		"framework",
-		"android_stubs_current",
-		"android_system_stubs_current",
-		"android_test_stubs_current",
-		"android_test_frameworks_core_stubs_current",
-		"android_module_lib_stubs_current",
-		"android_system_server_stubs_current",
 		"android_stubs_current.from-text",
 		"android_system_stubs_current.from-text",
 		"android_test_stubs_current.from-text",
@@ -196,60 +190,61 @@
 			}
 		}),
 	).RunTestWithBp(t, `
-	java_sdk_library {
-		name: "framework-foo",
-		srcs: ["a.java"],
-		public: {
-			enabled: true,
-		},
-		system: {
-			enabled: true,
-		},
-		test: {
-			enabled: true,
-		},
-		module_lib: {
-			enabled: true,
-		},
-		api_packages: [
-			"foo",
-		],
-		sdk_version: "core_current",
-		annotations_enabled: true,
-	}
-	java_sdk_library {
-		name: "framework-bar",
-		srcs: ["a.java"],
-		public: {
-			enabled: true,
-		},
-		system: {
-			enabled: true,
-		},
-		test: {
-			enabled: true,
-		},
-		module_lib: {
-			enabled: true,
-		},
-		api_packages: [
-			"foo",
-		],
-		sdk_version: "core_current",
-		annotations_enabled: true,
-	}
-
-	combined_apis {
-		name: "foo",
-		bootclasspath: [
-			"framework-bar",
-		] + select(boolean_var_for_testing(), {
-			true: [
-				"framework-foo",
+		java_sdk_library {
+			name: "framework-foo",
+			srcs: ["a.java"],
+			public: {
+				enabled: true,
+			},
+			system: {
+				enabled: true,
+			},
+			test: {
+				enabled: true,
+			},
+			module_lib: {
+				enabled: true,
+			},
+			api_packages: [
+				"foo",
 			],
-			default: [],
-		}),
-	}
+			sdk_version: "core_current",
+			annotations_enabled: true,
+		}
+
+		java_sdk_library {
+			name: "framework-bar",
+			srcs: ["a.java"],
+			public: {
+				enabled: true,
+			},
+			system: {
+				enabled: true,
+			},
+			test: {
+				enabled: true,
+			},
+			module_lib: {
+				enabled: true,
+			},
+			api_packages: [
+				"foo",
+			],
+			sdk_version: "core_current",
+			annotations_enabled: true,
+		}
+
+		combined_apis {
+			name: "foo",
+			bootclasspath: [
+				"framework-bar",
+			] + select(boolean_var_for_testing(), {
+				true: [
+					"framework-foo",
+				],
+				default: [],
+			}),
+		}
 	`)
 
 	subModuleDependsOnSelectAppendedModule := java.CheckModuleHasDependency(t,