forked from google/conscrypt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.gradle
28 lines (27 loc) · 1.46 KB
/
settings.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
rootProject.name = "conscrypt"
include ":conscrypt-android"
include ":conscrypt-android-platform"
include ":conscrypt-android-stub"
include ":conscrypt-api-doclet"
include ":conscrypt-benchmark-android"
include ":conscrypt-benchmark-base"
include ":conscrypt-benchmark-graphs"
include ":conscrypt-benchmark-jmh"
include ":conscrypt-constants"
include ":conscrypt-libcore-stub"
include ":conscrypt-openjdk"
include ":conscrypt-openjdk-uber"
include ":conscrypt-testing"
project(':conscrypt-android').projectDir = "$rootDir/android" as File
project(':conscrypt-android-platform').projectDir = "$rootDir/platform" as File
project(':conscrypt-android-stub').projectDir = "$rootDir/android-stub" as File
project(':conscrypt-api-doclet').projectDir = "$rootDir/api-doclet" as File
project(':conscrypt-benchmark-android').projectDir = "$rootDir/benchmark-android" as File
project(':conscrypt-benchmark-base').projectDir = "$rootDir/benchmark-base" as File
project(':conscrypt-benchmark-graphs').projectDir = "$rootDir/benchmark-graphs" as File
project(':conscrypt-benchmark-jmh').projectDir = "$rootDir/benchmark-jmh" as File
project(':conscrypt-constants').projectDir = "$rootDir/constants" as File
project(':conscrypt-libcore-stub').projectDir = "$rootDir/libcore-stub" as File
project(':conscrypt-openjdk').projectDir = "$rootDir/openjdk" as File
project(':conscrypt-openjdk-uber').projectDir = "$rootDir/openjdk-uber" as File
project(':conscrypt-testing').projectDir = "$rootDir/testing" as File