Extract JVM IR backend module out of compiler/backend

The old backend does not depend on IR modules anymore
This commit is contained in:
Alexander Udalov
2019-01-15 17:19:50 +01:00
parent ad974137b8
commit 4daee6d282
11 changed files with 47 additions and 22 deletions
+2 -2
View File
@@ -1,4 +1,3 @@
plugins {
kotlin("jvm")
id("jps-compatible")
@@ -14,6 +13,7 @@ dependencies {
compile(project(":compiler:frontend.script"))
compile(project(":compiler:backend-common"))
compile(project(":compiler:backend"))
compile(project(":compiler:backend.jvm"))
compile(project(":compiler:light-classes"))
compile(project(":compiler:serialization"))
compile(project(":compiler:plugin-api"))
@@ -54,4 +54,4 @@ testsJar {}
projectTest {
workingDir = rootDir
}
}