import java.io.File import org.gradle.api.tasks.bundling.Jar import org.jetbrains.kotlin.gradle.dsl.KotlinCompile import org.jetbrains.kotlin.gradle.dsl.KotlinJvmCompile plugins { kotlin("jvm") id("jps-compatible") } val compilerModules: Array by rootProject.extra val otherCompilerModules = compilerModules.filter { it != path } val effectSystemEnabled: Boolean by rootProject.extra val newInferenceEnabled: Boolean by rootProject.extra configureFreeCompilerArg(effectSystemEnabled, "-Xeffect-system") configureFreeCompilerArg(newInferenceEnabled, "-Xnew-inference") fun configureFreeCompilerArg(isEnabled: Boolean, compilerArgument: String) { if (isEnabled) { allprojects { tasks.withType> { kotlinOptions { freeCompilerArgs += listOf(compilerArgument) } } } } } val antLauncherJar by configurations.creating dependencies { testRuntime(intellijDep()) // Should come before compiler, because of "progarded" stuff needed for tests testCompile(project(":kotlin-script-runtime")) testCompile(project(":kotlin-test:kotlin-test-jvm")) testCompile(kotlinStdlib()) testCompile(commonDep("junit:junit")) testCompileOnly(project(":kotlin-test:kotlin-test-jvm")) testCompileOnly(project(":kotlin-test:kotlin-test-junit")) testCompile(projectTests(":compiler:tests-common")) testCompile(projectTests(":compiler:fir:psi2fir")) testCompile(projectTests(":compiler:fir:resolve")) testCompile(projectTests(":generators:test-generator")) testCompile(project(":compiler:ir.ir2cfg")) testCompile(project(":compiler:ir.tree")) // used for deepCopyWithSymbols call that is removed by proguard from the compiler TODO: make it more straightforward testCompile(project(":kotlin-scripting-compiler")) testCompile(project(":kotlin-script-util")) testCompileOnly(projectRuntimeJar(":kotlin-daemon-client")) testCompileOnly(project(":kotlin-reflect-api")) otherCompilerModules.forEach { testCompileOnly(project(it)) } testCompileOnly(intellijCoreDep()) { includeJars("intellij-core") } testCompileOnly(intellijDep()) { includeJars("openapi", "idea", "idea_rt", "util", "asm-all", rootProject = rootProject) } testRuntime(project(":kotlin-reflect")) testRuntime(project(":kotlin-daemon-client")) testRuntime(androidDxJar()) testRuntime(files(toolsJar())) antLauncherJar(commonDep("org.apache.ant", "ant")) antLauncherJar(files(toolsJar())) // For JPS build if (System.getProperty("idea.active") != null) { testRuntimeOnly(files("${rootProject.projectDir}/dist/kotlinc/lib/kotlin-reflect.jar")) } } sourceSets { "main" {} "test" { projectDefault() } } val jar: Jar by tasks jar.from("../idea/resources") { include("META-INF/extensions/compiler.xml") } projectTest { dependsOn(*testDistProjects.map { "$it:dist" }.toTypedArray()) workingDir = rootDir systemProperty("kotlin.test.script.classpath", testSourceSet.output.classesDirs.joinToString(File.pathSeparator)) systemProperty("kotlin.suppress.expected.test.failures", project.findProperty("kotlin.suppress.expected.test.failures") ?: false) doFirst { systemProperty("kotlin.ant.classpath", antLauncherJar.asPath) systemProperty("kotlin.ant.launcher.class", "org.apache.tools.ant.Main") } } val generateTests by generator("org.jetbrains.kotlin.generators.tests.GenerateCompilerTestsKt") testsJar()