From 929fb1f1783afba9169481c8ea0b2a2a3c1bc6d4 Mon Sep 17 00:00:00 2001 From: Mikhail Zarechenskiy Date: Tue, 15 Sep 2020 10:24:49 +0300 Subject: [PATCH] as42: Fix compilation of tests --- compiler/tests-common/build.gradle.kts.as42 | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/compiler/tests-common/build.gradle.kts.as42 b/compiler/tests-common/build.gradle.kts.as42 index 5a9935199e0..60a08cbdcda 100644 --- a/compiler/tests-common/build.gradle.kts.as42 +++ b/compiler/tests-common/build.gradle.kts.as42 @@ -10,7 +10,9 @@ dependencies { testCompile(project(":core:descriptors.jvm")) testCompile(project(":core:deserialization")) testCompile(project(":compiler:util")) + testCompile(project(":compiler:tests-mutes")) testCompile(project(":compiler:backend")) + testCompile(project(":compiler:ir.tree.impl")) testCompile(project(":compiler:fir:tree")) testCompile(project(":compiler:fir:raw-fir:psi2fir")) testCompile(project(":compiler:fir:raw-fir:light-tree2fir")) @@ -18,10 +20,12 @@ dependencies { testCompile(project(":compiler:fir:jvm")) testCompile(project(":compiler:fir:fir2ir:jvm-backend")) testCompile(project(":compiler:fir:fir-serialization")) + testCompile(project(":compiler:fir:fir-deserialization")) testCompile(project(":compiler:fir:cones")) testCompile(project(":compiler:fir:resolve")) testCompile(project(":compiler:fir:checkers")) testCompile(project(":compiler:fir:java")) + testCompile(project(":compiler:fir:entrypoint")) testCompile(project(":compiler:ir.ir2cfg")) testCompile(project(":compiler:frontend")) testCompile(project(":compiler:frontend.java"))