From a367fee5cfbac1b6b65a647329258c3d2cbc90af Mon Sep 17 00:00:00 2001 From: Ilya Kirillov Date: Fri, 17 Dec 2021 12:47:40 +0300 Subject: [PATCH] Add newly added modules to the list of compiler modules --- build.gradle.kts | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/build.gradle.kts b/build.gradle.kts index 03b6afb5bce..0028bacb2c0 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -153,7 +153,12 @@ val commonCompilerModules = arrayOf( ":core:compiler.common", ":core:compiler.common.jvm", ":core:util.runtime", - ":compiler:frontend.java" // TODO this is fe10 module but some utils used in fir ide now + ":core:deserialization.common.jvm.impl", + ":compiler:frontend.java", // TODO this is fe10 module but some utils used in fir ide now + ":analysis:decompiled:decompiler-to-stubs", + ":analysis:decompiled:decompiler-to-file-stubs", + ":analysis:decompiled:decompiler-to-psi", + ":analysis:decompiled:light-classes-for-decompiled", ).also { extra["commonCompilerModules"] = it } val firCompilerCoreModules = arrayOf( @@ -223,7 +228,8 @@ val fe10CompilerModules = arrayOf( ":native:frontend.native", ":native:kotlin-native-utils", ":kotlin-build-common", - ":compiler:backend.common.jvm" + ":compiler:backend.common.jvm", + ":analysis:decompiled:light-classes-for-decompiled-fe10", ).also { extra["fe10CompilerModules"] = it } extra["compilerModules"] =