Fix running turbine with many srcjars through RBE

The turbine RBE configuration was missing the srcjar rsp file when
RBE_TURBINE was enabled and the module contains many srcjars.  Add
the srcjar rsp file to the list of rbe rsp files so that rewrapper
treats all of the srcjars as inputs.

Fixes: 388999911
Test: m RBE_TURBINE=true RBE_TURBINE_EXEC_STRATEGY=remote out/soong/.intermediates/frameworks/base/framework-minus-apex/android_common/turbine/framework.jar
Change-Id: I3a14c18eb10b90ac18f54b842d3f6048f97f0770
diff --git a/java/builder.go b/java/builder.go
index 30de61d..f1d5e99 100644
--- a/java/builder.go
+++ b/java/builder.go
@@ -468,6 +468,7 @@
 		android.WriteFileRule(ctx, srcJarRspFile, strings.Join(srcJars.Strings(), "\n"))
 		srcJarArgs = "@" + srcJarRspFile.String()
 		implicits = append(implicits, srcJarRspFile)
+		rspFiles = append(rspFiles, srcJarRspFile)
 		rbeInputs = append(rbeInputs, srcJarRspFile)
 	} else {
 		rbeInputs = append(rbeInputs, srcJars...)