Fixes after rebase

This commit is contained in:
Ilya Chernikov
2017-12-21 08:57:36 +01:00
committed by Vyacheslav Gerasimov
parent 172a29ba04
commit 2dc4769c0a
3 changed files with 2 additions and 15 deletions
+1
View File
@@ -10,6 +10,7 @@ dependencies {
compileOnly(project(":compiler:frontend.java"))
compileOnly(project(":js:js.serializer"))
compileOnly(project(":js:js.frontend"))
compileOnly(intellijCoreDep()) { includeJars("intellij-core") }
compileOnly(intellijDep()) { includeJars("annotations", "asm-all", "trove4j", "util") }
compileOnly(project(":kotlin-reflect-api"))
-14
View File
@@ -42,7 +42,6 @@ dependencies {
antLauncherJar(files(toolsJar()))
}
sourceSets {
"main" {}
"test" { projectDefault() }
@@ -78,19 +77,6 @@ projectTest("quickTest") {
}
}
ant.importBuild(File(rootDir, "node_utils.xml"))
val prepareNode: Task = tasks["download-nodejs-and-npm"]
prepareNode.apply {
outputs.upToDateWhen { File(rootDir, "dependencies/node").exists() }
}
projectTest("nodeTest") {
workingDir = rootDir
dependsOn(prepareNode)
dependsOn("run-nodejs-tests")
}
val generateTests by generator("org.jetbrains.kotlin.generators.tests.GenerateJsTestsKt")
val testDataDir = project(":js:js.translator").projectDir.resolve("testData")
+1 -1
View File
@@ -20,7 +20,7 @@ dependencies {
testCompile(projectTests(":compiler:tests-common"))
testCompile(commonDep("junit:junit"))
testRuntime(ideaSdkDeps("*.jar"))
testRuntime(intellijDep())
}
sourceSets {