Don't run task to populate out folder under art vms
These are now checked in
Bug: b/301079699
Change-Id: I298d471cf0a4690b11e32e25c2e3df25bddba4b7
diff --git a/build.gradle b/build.gradle
index e4b958d..9316f6d 100644
--- a/build.gradle
+++ b/build.gradle
@@ -1130,20 +1130,6 @@
buildExampleJarsCreateTask("Java17", sourceSets.examplesJava17)
buildExampleJarsCreateTask("Java20", sourceSets.examplesJava20)
-task provideArtFrameworksDependencies {
- cloudDependencies.tools.forEach({ art ->
- if (art.contains("art")) {
- def taskName = art.replace('/','_')
- dependsOn "patch_${taskName}"
- task "patch_${taskName}"(type: org.gradle.api.tasks.Copy){
- from "tools/${art}/framework"
- include "**.jar"
- into file("tools/${art}/out/host/linux-x86/framework")
- }
- }
- })
-}
-
task buildExamples {
if (OperatingSystem.current().isMacOsX() || OperatingSystem.current().isWindows()) {
logger.lifecycle("WARNING: Testing (including building examples) is only partially supported on your " +
@@ -1757,7 +1743,6 @@
dependsOn downloadDeps
dependsOn buildExamples
dependsOn buildPreNJdwpTestsJar
- dependsOn provideArtFrameworksDependencies
} else {
logger.lifecycle("WARNING: Testing in not supported on your platform. Testing is only fully supported on " +
"Linux and partially supported on Mac OS and Windows. Art does not run on other platforms.")