Remove unnecessary dependencies on visualizer module

This commit is contained in:
Ivan Kylchik
2021-02-23 20:38:40 +03:00
committed by TeamCityServer
parent 13ef126d4c
commit 6f639a39a7
3 changed files with 5 additions and 3 deletions
-1
View File
@@ -49,7 +49,6 @@ dependencies {
testCompile(projectTests(":compiler:fir:raw-fir:light-tree2fir"))
testCompile(projectTests(":compiler:fir:fir2ir"))
testCompile(projectTests(":compiler:fir:analysis-tests:legacy-fir-tests"))
testCompile(projectTests(":compiler:visualizer"))
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
+4 -1
View File
@@ -8,8 +8,11 @@ plugins {
dependencies {
compile(kotlinStdlib())
testCompile(projectTests(":compiler:visualizer"))
testCompile(projectTests(":generators:test-generator"))
testApi(projectTests(":compiler:tests-common"))
testCompileOnly(intellijCoreDep()) { includeJars("intellij-core") }
testRuntimeOnly(intellijCoreDep()) { includeJars("intellij-core") }
}
sourceSets {
@@ -16,7 +16,7 @@ dependencies {
testApiJUnit5(vintageEngine = true, runner = true, suiteApi = true)
testCompileOnly(intellijCoreDep()) { includeJars("intellij-core") }
testImplementation(intellijCoreDep()) { includeJars("intellij-core") }
testRuntime(project(":kotlin-reflect"))
testRuntime(intellijDep())
testJvm6ServerRuntime(projectTests(":compiler:tests-common-jvm6"))