blob: 41d99c09e16fde08a5038529d8f0ea354a102798 [file] [log] [blame]
nmittlerf8314582015-01-27 10:25:39 -08001rootProject.name = "grpc"
2include ":grpc-core"
3include ":grpc-stub"
4include ":grpc-auth"
5include ":grpc-okhttp"
6include ":grpc-netty"
7include ":grpc-testing"
Eric Andersonfb28ad22015-01-29 15:00:58 -08008include ":grpc-compiler"
nmittlerf8314582015-01-27 10:25:39 -08009include ":grpc-integration-testing"
10include ":grpc-all"
nathanmittler164b7342014-12-15 09:58:05 -080011
nmittlerf8314582015-01-27 10:25:39 -080012project(':grpc-core').projectDir = "$rootDir/core" as File
13project(':grpc-stub').projectDir = "$rootDir/stub" as File
14project(':grpc-auth').projectDir = "$rootDir/auth" as File
15project(':grpc-okhttp').projectDir = "$rootDir/okhttp" as File
16project(':grpc-netty').projectDir = "$rootDir/netty" as File
17project(':grpc-testing').projectDir = "$rootDir/testing" as File
Eric Andersonfb28ad22015-01-29 15:00:58 -080018project(':grpc-compiler').projectDir = "$rootDir/compiler" as File
nmittlerf8314582015-01-27 10:25:39 -080019project(':grpc-integration-testing').projectDir = "$rootDir/integration-testing" as File
20project(':grpc-all').projectDir = "$rootDir/all" as File