1*f9742813SAndroid Build Coastguard Worker rootProject.name = "okio-parent" 2*f9742813SAndroid Build Coastguard Worker 3*f9742813SAndroid Build Coastguard Worker includeBuild("build-support") 4*f9742813SAndroid Build Coastguard Worker 5*f9742813SAndroid Build Coastguard Worker include(":okio") 6*f9742813SAndroid Build Coastguard Worker include(":okio-assetfilesystem") 7*f9742813SAndroid Build Coastguard Worker include(":okio-bom") 8*f9742813SAndroid Build Coastguard Worker include(":okio-fakefilesystem") 9*f9742813SAndroid Build Coastguard Worker if (System.getProperty("kjs", "true").toBoolean()) { 10*f9742813SAndroid Build Coastguard Worker include(":okio-nodefilesystem") 11*f9742813SAndroid Build Coastguard Worker } 12*f9742813SAndroid Build Coastguard Worker include(":okio-testing-support") 13*f9742813SAndroid Build Coastguard Worker include(":okio:jvm:jmh") 14*f9742813SAndroid Build Coastguard Worker if (System.getProperty("kwasm", "true").toBoolean()) { 15*f9742813SAndroid Build Coastguard Worker include(":okio-wasifilesystem") 16*f9742813SAndroid Build Coastguard Worker } 17*f9742813SAndroid Build Coastguard Worker include(":samples") 18*f9742813SAndroid Build Coastguard Worker 19*f9742813SAndroid Build Coastguard Worker // The Android test module doesn't work in IntelliJ. Use Android Studio or the command line. 20*f9742813SAndroid Build Coastguard Worker if (System.getProperties().containsKey("android.injected.invoked.from.ide") || 21*f9742813SAndroid Build Coastguard Worker System.getenv("ANDROID_SDK_ROOT") != null) { 22*f9742813SAndroid Build Coastguard Worker include(":android-test") 23*f9742813SAndroid Build Coastguard Worker } 24*f9742813SAndroid Build Coastguard Worker 25*f9742813SAndroid Build Coastguard Worker enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS") 26