[K2] Unbind fir:fir2ir:jvm-backend from other non jvm modules

This commit is contained in:
Ivan Kylchik
2023-03-27 22:31:15 +02:00
committed by Space Team
parent 33c5068b79
commit 525098dea6
5 changed files with 5 additions and 1 deletions
+1 -1
View File
@@ -21,7 +21,7 @@ dependencies {
api(project(":compiler:fir:java"))
api(project(":compiler:fir:entrypoint"))
api(project(":compiler:fir:fir2ir"))
api(project(":compiler:fir:fir2ir:jvm-backend"))
implementation(project(":compiler:fir:fir2ir:jvm-backend"))
api(project(":compiler:fir:checkers"))
api(project(":compiler:fir:checkers:checkers.jvm"))
api(project(":compiler:fir:checkers:checkers.js"))
+1
View File
@@ -10,6 +10,7 @@ dependencies {
api(project(":compiler:frontend"))
api(project(":compiler:backend-common"))
api(project(":compiler:fir:fir-serialization"))
api(project(":compiler:fir:fir2ir:jvm-backend")) // TODO needed for `FirJvmKotlinMangler`, but obviously wrong
api(project(":compiler:ir.backend.common"))
api(project(":compiler:ir.serialization.js"))
api(project(":compiler:ir.tree"))
@@ -16,6 +16,7 @@ dependencies {
api(project(":compiler:cli"))
api(project(":compiler:cli-js"))
api(project(":compiler:fir:entrypoint"))
api(project(":compiler:fir:fir2ir:jvm-backend"))
api(project(":compiler:ir.serialization.jvm"))
api(project(":compiler:backend.jvm.entrypoint"))
api(project(":kotlin-build-common"))
@@ -8,6 +8,7 @@ plugins {
dependencies {
testApi(project(":compiler:fir:entrypoint"))
testApi(project(":compiler:fir:fir-serialization"))
testApi(project(":compiler:fir:fir2ir:jvm-backend"))
testApi(project(":compiler:cli"))
testImplementation(project(":compiler:ir.tree"))
testImplementation(project(":compiler:backend.jvm.entrypoint"))
@@ -23,6 +23,7 @@ dependencies {
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"))