fb8bf19091
The new name more precisely describes the meaning of this opt-int
48 lines
1.5 KiB
Kotlin
48 lines
1.5 KiB
Kotlin
|
|
plugins {
|
|
kotlin("jvm")
|
|
id("jps-compatible")
|
|
}
|
|
|
|
dependencies {
|
|
testApi(kotlinStdlib("jdk8"))
|
|
testApi(project(":kotlin-scripting-compiler"))
|
|
testApi(project(":core:descriptors"))
|
|
testApi(project(":core:descriptors.jvm"))
|
|
testApi(project(":core:deserialization"))
|
|
testApi(project(":compiler:util"))
|
|
testApi(project(":compiler:tests-mutes"))
|
|
testApi(project(":compiler:backend"))
|
|
testApi(project(":compiler:ir.ir2cfg"))
|
|
testApi(project(":compiler:frontend"))
|
|
testApi(project(":compiler:frontend.java"))
|
|
testApi(project(":compiler:util"))
|
|
testApi(project(":compiler:psi"))
|
|
testApi(project(":compiler:cli-common"))
|
|
testApi(project(":compiler:cli"))
|
|
testApi(project(":compiler:cli-js"))
|
|
testApi(project(":compiler:serialization"))
|
|
testApi(project(":compiler:fir:entrypoint"))
|
|
testApi(project(":compiler:fir:fir2ir:jvm-backend"))
|
|
testApi(project(":compiler:backend.jvm.entrypoint"))
|
|
testApi(projectTests(":compiler:test-infrastructure-utils"))
|
|
testApi(project(":kotlin-preloader"))
|
|
testApi(commonDependency("com.android.tools:r8"))
|
|
testCompileOnly(intellijCore())
|
|
|
|
testApi(libs.guava)
|
|
testApi(commonDependency("org.jetbrains.intellij.deps:trove4j"))
|
|
testApi(commonDependency("org.jetbrains.intellij.deps:asm-all"))
|
|
testApi(commonDependency("org.jetbrains.intellij.deps:log4j"))
|
|
testApi(commonDependency("org.jetbrains.intellij.deps:jdom"))
|
|
}
|
|
|
|
optInToUnsafeDuringIrConstructionAPI()
|
|
|
|
sourceSets {
|
|
"main" { none() }
|
|
"test" { projectDefault() }
|
|
}
|
|
|
|
testsJar {}
|