Browse Source

Merge branch 'master' into samples_against_master

samples_against_master
Shagen Ogandzhanian 3 years ago
parent
commit
28b5b67edb
  1. 1
      web/gradle.properties
  2. 11
      web/settings.gradle.kts

1
web/gradle.properties

@ -4,3 +4,4 @@ COMPOSE_WEB_VERSION=1.0.0-alpha1
compose.web.buildSamples=false
compose.web.tests.integration.withFirefox
compose.web.tests.skip.benchmarks=false
compose.web.tests.skip.integration=false

11
web/settings.gradle.kts

@ -36,14 +36,19 @@ fun module(name: String, path: String) {
module(":web-core", "core")
module(":web-widgets", "widgets")
module(":web-integration-core", "integration-core")
module(":web-integration-widgets", "integration-widgets")
module(":compose-compiler-integration", "compose-compiler-integration")
if (extra["compose.web.tests.skip.benchmarks"]!!.toString().toBoolean() != true) {
module(":web-benchmark-core", "benchmark-core")
} else {
println("skipping benchmarks")
println("skipping benchmarks tests")
}
if (extra["compose.web.tests.skip.integration"]!!.toString().toBoolean() != true) {
module(":web-integration-core", "integration-core")
module(":web-integration-widgets", "integration-widgets")
} else {
println("skipping integration tests")
}
if (extra["compose.web.buildSamples"]!!.toString().toBoolean() == true) {

Loading…
Cancel
Save