IDE perf tests for K/N: add more tests (Linux, AndroidNative)

This commit is contained in:
Dmitriy Dolovov
2020-03-03 16:37:05 +07:00
parent 80f2c091b4
commit 8635045a53
7 changed files with 789 additions and 5 deletions
@@ -0,0 +1,25 @@
kotlin {
// there is no Android Native HMPP shortcut preset, so need to configure targets and common source sets manually
val androidNativeMain by sourceSets.creating { dependsOn(sourceSets["commonMain"]) }
val androidNativeTest by sourceSets.creating { dependsOn(sourceSets["commonTest"]) }
androidNativeX64 {
with(compilations["main"].defaultSourceSet) {
dependsOn(androidNativeMain)
kotlin.srcDir("src/main")
}
with(compilations["test"].defaultSourceSet) {
dependsOn(androidNativeTest)
kotlin.srcDir("src/test")
}
}
androidNativeArm64 {
compilations["main"].defaultSourceSet.dependsOn(androidNativeMain)
compilations["test"].defaultSourceSet.dependsOn(androidNativeTest)
}
}
// project-specific settings go under this line