Switch reflect to compiled core classes

This commit is contained in:
Ilya Chernikov
2017-08-30 12:39:13 +03:00
parent d89b53dfea
commit fd1b677904
11 changed files with 39 additions and 24 deletions
-1
View File
@@ -20,7 +20,6 @@ val testDistProjects = listOf(
"", // for root project
":prepare:mock-runtime-for-test",
":kotlin-compiler",
":kotlin-runtime",
":kotlin-script-runtime",
":kotlin-stdlib",
":kotlin-stdlib-jre7",
+1
View File
@@ -52,6 +52,7 @@ messages/**)
-dontwarn org.w3c.dom.ElementTraversal
-dontwarn javaslang.match.annotation.Unapply
-dontwarn javaslang.match.annotation.Patterns
-dontwarn javaslang.*
-dontwarn com.google.errorprone.**
-dontwarn com.google.j2objc.**
-dontwarn javax.crypto.**
@@ -6,6 +6,7 @@ jvmTarget = "1.6"
dependencies {
compile(project(":compiler:util"))
compile(project(":compiler:frontend"))
compile(projectDist(":kotlin-stdlib"))
compile(projectDist(":kotlin-reflect"))
compile(preloadedDeps("kotlinx-coroutines-core"))
}
-1
View File
@@ -18,7 +18,6 @@ dependencies {
// deps below are test runtime deps, but made test compile to split compilation and running to reduce mem req
testCompile(projectDist(":kotlin-stdlib"))
testCompile(projectDist(":kotlin-script-runtime"))
testCompile(projectDist(":kotlin-runtime"))
testCompile(projectDist(":kotlin-reflect"))
testCompile(projectTests(":compiler"))
testRuntime(projectDist(":kotlin-preloader"))