[Commonizer] Implement support for hierarchical commonization

This commit is contained in:
sebastian.sellmair
2021-03-26 12:20:42 +01:00
parent 46a20c81cc
commit 68c3e39058
30 changed files with 293 additions and 132 deletions
@@ -31,7 +31,7 @@ internal class KotlinNativeCommonizerToolRunner(project: Project) : KotlinToolRu
override val defaultMaxHeapSize: String get() = "4G"
override val mustRunViaExec get() = true // because it's not enough the standard Gradle wrapper's heap size
override val mustRunViaExec get() = false // because it's not enough the standard Gradle wrapper's heap size
override fun getCustomJvmArgs() = PropertiesProvider(project).commonizerJvmArgs?.split("\\s+".toRegex()).orEmpty()
}