[WASM] Download v8 with D8 gradle plugin and make version property in versions.properties

This commit is contained in:
Igor Yakovlev
2022-07-06 16:37:50 +02:00
parent 939a720686
commit dab1ec7aff
4 changed files with 15 additions and 36 deletions
+1
View File
@@ -262,6 +262,7 @@ fun Project.kotlinxCollectionsImmutable() =
val Project.kotlinNativeVersion: String get() = property("versions.kotlin-native") as String
val Project.nodejsVersion: String get() = property("versions.nodejs") as String
val Project.v8Version: String get() = property("versions.v8") as String
fun File.matchMaybeVersionedArtifact(baseName: String) = name.matches(baseName.toMaybeVersionedJarRegex())
+1
View File
@@ -53,3 +53,4 @@ versions.protobuf=2.6.1
versions.r8=2.2.64
versions.robolectric=4.0
versions.nodejs=16.14.2
versions.v8=10.2.9
+10 -36
View File
@@ -4,6 +4,7 @@ import org.gradle.internal.os.OperatingSystem
import org.jetbrains.kotlin.gradle.plugin.KotlinPlatformType
import org.jetbrains.kotlin.gradle.plugin.mpp.KotlinUsages
import org.jetbrains.kotlin.ideaExt.idea
import org.jetbrains.kotlin.gradle.targets.js.d8.D8RootPlugin
plugins {
kotlin("jvm")
@@ -149,34 +150,6 @@ val unzipJsShell by task<Copy> {
into(unpackedDir)
}
val v8osString = when (currentOsType) {
OsType(OsName.LINUX, OsArch.X86_32) -> "linux32"
OsType(OsName.LINUX, OsArch.X86_64) -> "linux64"
OsType(OsName.MAC, OsArch.X86_64) -> "mac64"
OsType(OsName.MAC, OsArch.ARM64) -> "mac-arm64"
OsType(OsName.WINDOWS, OsArch.X86_32) -> "win32"
OsType(OsName.WINDOWS, OsArch.X86_64) -> "win64"
else -> error("unsupported os type $currentOsType")
}
val v8edition = "rel" // rel or dbg
val v8version = "10.2.9"
val v8fileName = "v8-${v8osString}-${v8edition}-${v8version}"
val v8url = "https://storage.googleapis.com/chromium-v8/official/canary/$v8fileName.zip"
val downloadV8 by task<Download> {
src(v8url)
dest(File(downloadedTools, "$v8fileName.zip"))
overwrite(false)
}
val unzipV8 by task<Copy> {
dependsOn(downloadV8)
from(zipTree(downloadV8.get().dest))
val unpackedDir = File(downloadedTools, v8fileName)
into(unpackedDir)
}
val testDataDir = project(":js:js.translator").projectDir.resolve("testData")
val typescriptTestsDir = testDataDir.resolve("typescript-export")
@@ -204,20 +177,21 @@ val generateTypeScriptTests = sequential(
.map { generateTypeScriptTestFor(it.name) }
)
fun Test.setupV8() {
dependsOn(unzipV8)
val v8Path = unzipV8.get().destinationDir
val v8ExecutablePath = File(v8Path, "d8")
systemProperty("javascript.engine.path.V8", v8ExecutablePath)
inputs.dir(v8Path)
}
fun Test.setupSpiderMonkey() {
dependsOn(unzipJsShell)
val jsShellExecutablePath = File(unzipJsShell.get().destinationDir, "js").absolutePath
systemProperty("javascript.engine.path.SpiderMonkey", jsShellExecutablePath)
}
fun Test.setupV8() {
val d8Plugin = D8RootPlugin.apply(rootProject)
dependsOn(d8Plugin.setupTaskProvider)
d8Plugin.version = v8Version
doFirst {
systemProperty("javascript.engine.path.V8", d8Plugin.requireConfigured().executablePath.absolutePath)
}
}
fun Test.setUpJsBoxTests(jsEnabled: Boolean, jsIrEnabled: Boolean) {
setupV8()
+3
View File
@@ -1,4 +1,5 @@
import org.jetbrains.kotlin.gradle.dsl.KotlinCompile
import org.jetbrains.kotlin.gradle.targets.js.d8.D8RootPlugin
import org.jetbrains.kotlin.gradle.targets.js.ir.KotlinJsIrLink
plugins {
@@ -74,6 +75,8 @@ val commonTestSources by task<Sync> {
into("$buildDir/commonTestSources")
}
D8RootPlugin.apply(rootProject).version = v8Version
kotlin {
wasm {
d8()