1pluginManagement { 2 repositories { 3 google() 4 mavenCentral() 5 gradlePluginPortal() 6 } 7} 8 9dependencyResolutionManagement { 10 repositories { 11 google() 12 mavenCentral() 13 } 14} 15 16rootProject.name = "conscrypt" 17if (System.env.ANDROID_HOME && file(System.env.ANDROID_HOME).exists()) { 18 include ":conscrypt-android" 19 include ":conscrypt-android-platform" 20 include ":conscrypt-android-stub" 21 include ":conscrypt-benchmark-android" 22 include ":conscrypt-libcore-stub" 23 24 project(':conscrypt-android').projectDir = "$rootDir/android" as File 25 project(':conscrypt-android-platform').projectDir = "$rootDir/platform" as File 26 project(':conscrypt-android-stub').projectDir = "$rootDir/android-stub" as File 27 project(':conscrypt-benchmark-android').projectDir = "$rootDir/benchmark-android" as File 28 project(':conscrypt-libcore-stub').projectDir = "$rootDir/libcore-stub" as File 29} else { 30 logger.warn('Android SDK has not been detected. Skipping Android projects.') 31} 32 33include ":conscrypt-api-doclet" 34include ":conscrypt-benchmark-base" 35include ":conscrypt-benchmark-graphs" 36include ":conscrypt-benchmark-jmh" 37include ":conscrypt-constants" 38include ":conscrypt-openjdk" 39include ":conscrypt-openjdk-uber" 40include ":conscrypt-testing" 41 42project(':conscrypt-api-doclet').projectDir = "$rootDir/api-doclet" as File 43project(':conscrypt-benchmark-base').projectDir = "$rootDir/benchmark-base" as File 44project(':conscrypt-benchmark-graphs').projectDir = "$rootDir/benchmark-graphs" as File 45project(':conscrypt-benchmark-jmh').projectDir = "$rootDir/benchmark-jmh" as File 46project(':conscrypt-constants').projectDir = "$rootDir/constants" as File 47project(':conscrypt-openjdk').projectDir = "$rootDir/openjdk" as File 48project(':conscrypt-openjdk-uber').projectDir = "$rootDir/openjdk-uber" as File 49project(':conscrypt-testing').projectDir = "$rootDir/testing" as File 50