xref: /aosp_15_r20/external/kotlinx.coroutines/buildSrc/src/main/kotlin/Platform.kt (revision 7a7160fed73afa6648ef8aa100d4a336fe921d9a)
1 import org.gradle.api.Project
2 
3 // Use from Groovy for now
platformOfnull4 fun platformOf(project: Project): String =
5     when (project.name.substringAfterLast("-")) {
6         "js" -> "js"
7         "common", "native" -> throw IllegalStateException("${project.name} platform is not supported")
8         else -> "jvm"
9     }
10