*/
@NonNull
public Set<File> getCompileClasspath(@NonNull VariantConfiguration variantConfiguration) {
Set<File> compileClasspath = variantConfiguration.getCompileClasspath();
ProductFlavor mergedFlavor = variantConfiguration.getMergedFlavor();
if (mergedFlavor.getRenderscriptSupportMode()) {
File renderScriptSupportJar = RenderScriptProcessor.getSupportJar(
mBuildTools.getLocation().getAbsolutePath());
Set<File> fullJars = Sets.newHashSetWithExpectedSize(compileClasspath.size() + 1);
fullJars.addAll(compileClasspath);